Skip Navigation

[Resolved] Limit the number of photos uploaded for the image media custom field

This support ticket is created 2 years, 6 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 12:00 9:00 – 12:00 9:00 – 12:00 9:00 – 12:00 9:00 – 12:00 -
- 13:00 – 18:00 13:00 – 18:00 13:00 – 18:00 14:00 – 18:00 13:00 – 18:00 -

Supporter timezone: America/Jamaica (GMT-05:00)

This topic contains 16 replies, has 2 voices.

Last updated by philipC-4 2 years, 6 months ago.

Assisted by: Shane.

Author
Posts
#2187021
Screen Shot 2021-10-04 at 11.34.33 AM.png

Tell us what you are trying to do?

Hello, we are using the custom field IMAGE "media uploader" and would like to limit the number of photos uploaded by the user to "4 total". Can you please help us in achieving this?

You will have to log in to see the form. Please let me know when it is safe to share login credentials.

What is the link to your site?

You will be able to see the form here after you log in:
hidden link

#2187149

Shane
Supporter

Languages: English (English )

Timezone: America/Jamaica (GMT-05:00)

Hi Philip,

Whilst you're not able to physically limit the number of items to only 4 you can cause the form to fail a custom validation if the user uploads more than 4 images.

This can be done with the hook below.

add_filter('cred_form_validate','my_validation',10,2);
function my_validation($error_fields, $form_data)
{
    //field data are field values and errors
    list($fields,$errors)=$error_fields;
    //uncomment this if you want to print the field values
    //print_r($fields);
    //validate if specific form
    if ($form_data['id']==12)
    {
        //check my_field value
        if (count($fields['wpcf-my_field']) > 4)
        {
            //set error message for my_field
            $errors['my_field']='Only a maximum of 4 images can be uploaded';
        }
      
    }
    //return result
    return array($fields,$errors);
}

Now you will need to replace wpcf-my_field with the slug of your custom field keeping the wpcf- prefix and replace "my_field " with only the slug without the wpcf prefix.

Finally change the 12 to the ID of your form.

Please let me know if this helps.

Thanks,
Shane

#2188011
Screen Shot 2021-10-05 at 11.43.15 AM.png
Screen Shot 2021-10-05 at 11.39.28 AM.png

Hello Shane, we have applied the code you provided but it gives the website a "critical error" message. After I deactivate the custom code the website functions again.

Can you take a look at our code and let me know if you have any suggestions? We are testing the code out on 'graiding-and-drainage-photos"

add_filter('cred_form_validate','my_validation',10,2);
function my_validation($error_fields, $form_data)
{
//field data are field values and errors
list($fields,$errors)=$error_fields;
//uncomment this if you want to print the field values
//print_r($fields);
//validate if specific form
if ($form_data['id']==331)
{
//check my_field value
if (count($fields['wpcf-graiding-and-drainage-photos']) > 4)
{
//set error message for my_field
$errors['graiding-and-drainage-photos']='Only a maximum of 4 images can be uploaded per item being inspected';
}

}
//return result
return array($fields,$errors);
}

#2188095

Shane
Supporter

Languages: English (English )

Timezone: America/Jamaica (GMT-05:00)

Hi Philip,

The code look correct. I'm not seeing why there would be a fatal error being thrown.

However can you enable the wordpress debugging so that we can have a little more information on the error to work with.

To enable the wordpress debugging please follow the instructions below.
hidden link

Thanks,
Shane

#2188231

Hello Shane,

I was not able to upload the debug file, I hope this is okay:

[22-Jul-2021 18:26:01 UTC] Astra Addon: DB version updated!
[22-Jul-2021 18:54:23 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[22-Jul-2021 18:55:33 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[22-Jul-2021 18:55:39 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[22-Jul-2021 19:15:57 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[22-Jul-2021 19:20:06 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[22-Jul-2021 20:43:00 UTC] PHP Fatal error: Class Elementor\Core\DocumentTypes\Post contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (Elementor\Controls_Stack::get_name) in /home/diyhouse/public_html/web/wp-content/plugins/elementor/core/document-types/post.php on line 8
[22-Jul-2021 20:45:50 UTC] Astra Addon: DB version updated!
[22-Jul-2021 20:47:20 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[22-Jul-2021 20:47:31 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[22-Jul-2021 20:47:36 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[22-Jul-2021 20:48:13 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[22-Jul-2021 20:51:03 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[22-Jul-2021 22:43:21 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[22-Jul-2021 22:44:25 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[22-Jul-2021 22:44:25 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[22-Jul-2021 22:44:26 UTC] Sync process for Gutenberg Blocks has started.
[22-Jul-2021 22:44:26 UTC] CATEGORY:Importing categories..
[22-Jul-2021 22:44:26 UTC] CATEGORY:Storing in option ast-block-templates-categories
[22-Jul-2021 22:44:26 UTC] CATEGORY:Completed category import.
[22-Jul-2021 22:44:26 UTC] BLOCK: Getting Total Blocks
[22-Jul-2021 22:44:26 UTC] BLOCK: hidden link
[22-Jul-2021 22:44:26 UTC] BLOCK: Requests count 3
[22-Jul-2021 22:44:26 UTC] BLOCK: Importing request 1 ..
[22-Jul-2021 22:44:26 UTC] BLOCK: hidden link
[22-Jul-2021 22:44:26 UTC] BLOCK: Storing in option ast-block-templates-blocks-1
[22-Jul-2021 22:44:26 UTC] BLOCK: Completed request 1
[22-Jul-2021 22:44:26 UTC] BLOCK: Importing request 2 ..
[22-Jul-2021 22:44:26 UTC] BLOCK: hidden link
[22-Jul-2021 22:44:27 UTC] BLOCK: Storing in option ast-block-templates-blocks-2
[22-Jul-2021 22:44:27 UTC] BLOCK: Completed request 2
[22-Jul-2021 22:44:27 UTC] BLOCK: Importing request 3 ..
[22-Jul-2021 22:44:27 UTC] BLOCK: hidden link
[22-Jul-2021 22:44:27 UTC] BLOCK: Storing in option ast-block-templates-blocks-3
[22-Jul-2021 22:44:27 UTC] BLOCK: Completed request 3
[22-Jul-2021 22:44:27 UTC] SITE: Getting Total Sites
[22-Jul-2021 22:44:27 UTC] SITE: hidden link
[22-Jul-2021 22:44:27 UTC] SITE: Request count 1
[22-Jul-2021 22:44:27 UTC] SITE: Importing request 1 ..
[22-Jul-2021 22:44:27 UTC] SITE: hidden link
[22-Jul-2021 22:44:27 UTC] SITE: Storing in option ast-block-templates-sites-1
[22-Jul-2021 22:44:27 UTC] SITE: Completed request 1
[22-Jul-2021 22:44:27 UTC] Sync process for Gutenberg Blocks is done.
[22-Jul-2021 22:46:31 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[22-Jul-2021 22:46:32 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[22-Jul-2021 22:49:54 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[22-Jul-2021 22:49:54 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 14:03:58 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Jul-2021 14:19:22 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 14:19:23 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 14:27:35 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 14:27:36 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 14:29:35 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 14:29:38 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 14:37:17 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 14:37:17 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 19:59:44 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Jul-2021 20:06:06 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 20:06:06 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 20:07:56 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Jul-2021 20:08:27 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Jul-2021 20:08:34 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 20:08:34 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 20:10:03 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 20:10:03 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 20:14:24 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 20:14:28 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 20:15:44 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Jul-2021 20:15:48 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Jul-2021 20:16:11 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Jul-2021 20:17:02 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Jul-2021 20:17:56 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 20:17:56 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 20:19:03 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Jul-2021 20:19:06 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 20:19:06 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 20:19:13 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 20:19:13 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 20:20:26 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Jul-2021 20:21:04 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Jul-2021 20:21:34 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Jul-2021 20:22:09 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 20:22:10 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 20:22:30 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 20:22:30 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 20:23:51 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Jul-2021 20:24:27 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 20:24:28 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 20:24:55 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Jul-2021 20:25:05 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 20:25:07 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 20:30:08 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 20:30:08 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 20:33:02 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 20:33:03 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 20:33:04 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Jul-2021 20:33:28 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Jul-2021 20:34:26 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Jul-2021 20:34:30 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[26-Jul-2021 15:29:47 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[28-Jul-2021 18:19:42 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[30-Jul-2021 20:56:32 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[30-Jul-2021 20:56:33 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[30-Jul-2021 20:56:36 UTC] Sync process for Gutenberg Blocks has started.
[30-Jul-2021 20:56:36 UTC] CATEGORY:Importing categories..
[30-Jul-2021 20:56:36 UTC] CATEGORY:Storing in option ast-block-templates-categories
[30-Jul-2021 20:56:36 UTC] CATEGORY:Completed category import.
[30-Jul-2021 20:56:36 UTC] BLOCK: Getting Total Blocks
[30-Jul-2021 20:56:36 UTC] BLOCK: hidden link
[30-Jul-2021 20:56:36 UTC] BLOCK: Requests count 3
[30-Jul-2021 20:56:36 UTC] BLOCK: Importing request 1 ..
[30-Jul-2021 20:56:36 UTC] BLOCK: hidden link
[30-Jul-2021 20:56:36 UTC] BLOCK: Storing in option ast-block-templates-blocks-1
[30-Jul-2021 20:56:36 UTC] BLOCK: Completed request 1
[30-Jul-2021 20:56:36 UTC] BLOCK: Importing request 2 ..
[30-Jul-2021 20:56:36 UTC] BLOCK: hidden link
[30-Jul-2021 20:56:36 UTC] BLOCK: Storing in option ast-block-templates-blocks-2
[30-Jul-2021 20:56:36 UTC] BLOCK: Completed request 2
[30-Jul-2021 20:56:36 UTC] BLOCK: Importing request 3 ..
[30-Jul-2021 20:56:36 UTC] BLOCK: hidden link
[30-Jul-2021 20:56:37 UTC] BLOCK: Storing in option ast-block-templates-blocks-3
[30-Jul-2021 20:56:37 UTC] BLOCK: Completed request 3
[30-Jul-2021 20:56:37 UTC] SITE: Getting Total Sites
[30-Jul-2021 20:56:37 UTC] SITE: hidden link
[30-Jul-2021 20:56:37 UTC] SITE: Request count 1
[30-Jul-2021 20:56:37 UTC] SITE: Importing request 1 ..
[30-Jul-2021 20:56:37 UTC] SITE: hidden link
[30-Jul-2021 20:56:37 UTC] SITE: Storing in option ast-block-templates-sites-1
[30-Jul-2021 20:56:37 UTC] SITE: Completed request 1
[30-Jul-2021 20:56:37 UTC] Sync process for Gutenberg Blocks is done.
[30-Jul-2021 21:01:04 UTC] Astra Addon: Batch Process Started!
[30-Jul-2021 21:01:04 UTC] Astra Addon: Queuing 3.5.7 - astra_addon_outline_cart_bg_color_support
[30-Jul-2021 21:01:04 UTC] Astra Addon: Queuing 3.5.7 - astra_addon_remove_header_sections_deps_new_builder
[30-Jul-2021 21:01:04 UTC] Astra Addon: Queuing 3.5.7 - astra_addon_swap_section_not_working_in_old_header
[30-Jul-2021 21:01:04 UTC] Astra Addon: Queuing 3.5.7 - astra_addon_clear_assets_cache
[30-Jul-2021 21:01:09 UTC] Astra Addon: DB version updated!
[30-Jul-2021 21:01:09 UTC] Astra Addon: Batch Process Completed!
[30-Jul-2021 21:03:16 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[30-Jul-2021 21:04:04 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[05-Aug-2021 15:26:21 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[05-Aug-2021 15:28:10 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[05-Aug-2021 15:28:10 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[05-Aug-2021 15:46:03 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 15:46:04 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 15:46:05 UTC] Sync process for Gutenberg Blocks has started.
[05-Aug-2021 15:46:05 UTC] CATEGORY:Importing categories..
[05-Aug-2021 15:46:06 UTC] CATEGORY:Storing in option ast-block-templates-categories
[05-Aug-2021 15:46:06 UTC] CATEGORY:Completed category import.
[05-Aug-2021 15:46:06 UTC] BLOCK: Getting Total Blocks
[05-Aug-2021 15:46:06 UTC] BLOCK: hidden link
[05-Aug-2021 15:46:06 UTC] BLOCK: Requests count 3
[05-Aug-2021 15:46:06 UTC] BLOCK: Importing request 1 ..
[05-Aug-2021 15:46:06 UTC] BLOCK: hidden link
[05-Aug-2021 15:46:06 UTC] BLOCK: Storing in option ast-block-templates-blocks-1
[05-Aug-2021 15:46:06 UTC] BLOCK: Completed request 1
[05-Aug-2021 15:46:06 UTC] BLOCK: Importing request 2 ..
[05-Aug-2021 15:46:06 UTC] BLOCK: hidden link
[05-Aug-2021 15:46:06 UTC] BLOCK: Storing in option ast-block-templates-blocks-2
[05-Aug-2021 15:46:06 UTC] BLOCK: Completed request 2
[05-Aug-2021 15:46:06 UTC] BLOCK: Importing request 3 ..
[05-Aug-2021 15:46:06 UTC] BLOCK: hidden link
[05-Aug-2021 15:46:06 UTC] BLOCK: Storing in option ast-block-templates-blocks-3
[05-Aug-2021 15:46:06 UTC] BLOCK: Completed request 3
[05-Aug-2021 15:46:06 UTC] SITE: Getting Total Sites
[05-Aug-2021 15:46:06 UTC] SITE: hidden link
[05-Aug-2021 15:46:06 UTC] SITE: Request count 1
[05-Aug-2021 15:46:06 UTC] SITE: Importing request 1 ..
[05-Aug-2021 15:46:06 UTC] SITE: hidden link
[05-Aug-2021 15:46:07 UTC] SITE: Storing in option ast-block-templates-sites-1
[05-Aug-2021 15:46:07 UTC] SITE: Completed request 1
[05-Aug-2021 15:46:07 UTC] Sync process for Gutenberg Blocks is done.
[05-Aug-2021 15:46:54 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 15:46:58 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 15:47:25 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 15:47:31 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 15:49:26 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 15:49:32 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 15:51:22 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 15:51:26 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 15:55:39 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 15:55:40 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 15:58:30 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 15:58:31 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:00:22 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:00:23 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:01:51 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:01:51 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:02:34 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:02:35 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:07:29 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:07:29 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:09:09 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:09:09 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:11:26 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:11:26 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:12:08 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:12:09 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:13:14 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:13:14 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:15:43 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:15:43 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:16:20 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:16:20 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:16:40 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:16:41 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:17:02 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:17:03 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:17:25 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:17:26 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:21:23 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:21:24 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:22:48 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:22:48 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:23:35 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:23:35 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:26:09 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:26:09 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:59:14 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 16:59:15 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 20:48:04 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 20:48:04 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 20:53:32 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[05-Aug-2021 21:02:26 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 21:02:27 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 21:05:34 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 21:05:35 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 21:29:13 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 21:29:14 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 21:48:17 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 21:48:17 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 21:48:57 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 21:48:58 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 21:50:03 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[05-Aug-2021 21:50:04 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[06-Aug-2021 22:39:06 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[06-Aug-2021 22:39:06 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[06-Aug-2021 22:39:38 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[06-Aug-2021 22:39:39 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[06-Aug-2021 22:42:21 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[06-Aug-2021 22:42:21 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[06-Aug-2021 22:45:35 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[06-Aug-2021 22:45:36 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[06-Aug-2021 22:46:23 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[06-Aug-2021 22:46:23 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[06-Aug-2021 22:46:50 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[06-Aug-2021 22:46:51 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[06-Aug-2021 22:49:53 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[06-Aug-2021 22:49:53 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[06-Aug-2021 22:50:45 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[06-Aug-2021 22:50:45 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[06-Aug-2021 22:53:54 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[06-Aug-2021 22:53:55 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[12-Aug-2021 19:19:07 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[13-Aug-2021 17:33:52 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[13-Aug-2021 17:36:43 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[13-Aug-2021 17:36:47 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[13-Aug-2021 17:47:57 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[16-Aug-2021 15:46:26 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 15:46:27 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 15:48:43 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[16-Aug-2021 15:49:32 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[16-Aug-2021 15:51:40 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[16-Aug-2021 15:52:46 UTC] PHP Notice: Undefined index: current_post_id in /home/diyhouse/public_html/web/wp-content/plugins/cred-frontend-editor/vendor/toolset/common-es/server/Rest/Route/ShortcodeRender.php on line 32
[16-Aug-2021 15:52:46 UTC] PHP Notice: Undefined index: current_post_id in /home/diyhouse/public_html/web/wp-content/plugins/cred-frontend-editor/vendor/toolset/common-es/server/Rest/Route/ShortcodeRender.php on line 35
[16-Aug-2021 15:54:17 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 15:54:17 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 15:56:11 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 15:56:12 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 15:56:36 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[16-Aug-2021 15:56:39 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 15:56:39 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 15:57:15 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 15:57:16 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 15:59:01 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[16-Aug-2021 15:59:07 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 15:59:07 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 15:59:22 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 15:59:22 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 16:00:26 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[16-Aug-2021 16:00:27 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 16:00:27 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 17:17:52 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 17:17:52 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 17:19:17 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 17:19:17 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 17:25:27 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 17:25:28 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 17:27:00 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[16-Aug-2021 18:10:15 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[16-Aug-2021 18:14:43 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 18:14:43 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 18:15:35 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[16-Aug-2021 18:15:40 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 18:15:40 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 18:25:17 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[16-Aug-2021 18:43:55 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[16-Aug-2021 18:45:51 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 18:45:52 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 18:48:00 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 18:48:01 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 20:38:52 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 20:38:52 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 20:39:25 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 20:39:25 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 20:42:54 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 20:42:55 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 20:43:26 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 20:43:26 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 20:43:30 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[16-Aug-2021 20:50:00 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 20:50:00 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 20:50:15 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 20:50:16 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 20:50:20 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[16-Aug-2021 20:55:44 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 20:55:44 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 20:55:48 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[16-Aug-2021 20:56:34 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 20:56:34 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 20:56:50 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[16-Aug-2021 20:59:09 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[16-Aug-2021 20:59:12 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 20:59:12 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 21:06:44 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 21:06:44 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 21:09:53 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[16-Aug-2021 21:14:33 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 21:14:33 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[16-Aug-2021 21:15:06 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[16-Aug-2021 21:19:21 UTC] PHP Notice: Trying to get property 'ID' of non-object in /home/diyhouse/public_html/web/wp-content/plugins/woocommerce-views/application/Helpers/wcviews-blocks.php on line 123
[16-Aug-2021 21:19:21 UTC] PHP Notice: Trying to get property 'post_type' of non-object in /home/diyhouse/public_html/web/wp-content/plugins/woocommerce-views/application/Helpers/wcviews-blocks.php on line 127
[17-Aug-2021 14:19:38 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 14:19:40 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 14:33:55 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[17-Aug-2021 14:35:23 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 14:35:24 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 14:46:56 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 14:46:57 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 14:47:37 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[17-Aug-2021 14:48:48 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 14:48:48 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 14:49:56 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 14:49:56 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 14:50:39 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[17-Aug-2021 14:51:30 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 14:51:30 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 14:53:25 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 14:53:26 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 14:59:13 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 14:59:13 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 14:59:44 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[17-Aug-2021 15:01:08 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 15:01:09 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 15:02:06 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[17-Aug-2021 15:02:07 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 15:02:07 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 15:04:15 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 15:04:15 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 15:04:58 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 15:04:58 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 15:05:54 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 15:05:55 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 15:06:23 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 15:06:24 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 15:07:07 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 15:07:08 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 15:08:00 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 15:08:03 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 15:08:55 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 15:08:56 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 15:10:37 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 15:10:37 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 15:11:08 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 15:11:09 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 15:11:49 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 15:11:51 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 16:08:29 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 16:08:30 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 16:09:05 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 16:09:06 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 16:09:44 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 16:09:46 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 16:10:02 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 16:10:02 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 16:12:18 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 16:12:19 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 16:13:20 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 16:13:21 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 16:14:09 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 16:14:09 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 16:14:27 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 16:14:27 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 16:15:06 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 16:15:06 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 16:15:23 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 16:15:23 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 16:16:28 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 16:16:28 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 16:16:59 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 16:16:59 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 16:17:36 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 16:17:36 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 16:41:31 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[17-Aug-2021 21:06:18 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 21:06:19 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 21:07:06 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[17-Aug-2021 21:07:09 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 21:07:09 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 21:09:19 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 21:09:19 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[17-Aug-2021 21:09:58 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[18-Aug-2021 15:48:17 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[18-Aug-2021 20:36:23 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[18-Aug-2021 20:36:23 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[18-Aug-2021 20:57:35 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[18-Aug-2021 20:57:35 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[19-Aug-2021 16:54:42 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[19-Aug-2021 16:54:42 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[19-Aug-2021 16:54:43 UTC] Sync process for Gutenberg Blocks has started.
[19-Aug-2021 16:54:43 UTC] CATEGORY:Importing categories..
[19-Aug-2021 16:54:44 UTC] CATEGORY:Storing in option ast-block-templates-categories
[19-Aug-2021 16:54:44 UTC] CATEGORY:Completed category import.
[19-Aug-2021 16:54:44 UTC] BLOCK: Getting Total Blocks
[19-Aug-2021 16:54:44 UTC] BLOCK: hidden link
[19-Aug-2021 16:54:44 UTC] BLOCK: Requests count 3
[19-Aug-2021 16:54:44 UTC] BLOCK: Importing request 1 ..
[19-Aug-2021 16:54:44 UTC] BLOCK: hidden link
[19-Aug-2021 16:54:44 UTC] BLOCK: Storing in option ast-block-templates-blocks-1
[19-Aug-2021 16:54:44 UTC] BLOCK: Completed request 1
[19-Aug-2021 16:54:44 UTC] BLOCK: Importing request 2 ..
[19-Aug-2021 16:54:44 UTC] BLOCK: hidden link
[19-Aug-2021 16:54:44 UTC] BLOCK: Storing in option ast-block-templates-blocks-2
[19-Aug-2021 16:54:44 UTC] BLOCK: Completed request 2
[19-Aug-2021 16:54:44 UTC] BLOCK: Importing request 3 ..
[19-Aug-2021 16:54:44 UTC] BLOCK: hidden link
[19-Aug-2021 16:54:44 UTC] BLOCK: Storing in option ast-block-templates-blocks-3
[19-Aug-2021 16:54:44 UTC] BLOCK: Completed request 3
[19-Aug-2021 16:54:44 UTC] SITE: Getting Total Sites
[19-Aug-2021 16:54:44 UTC] SITE: hidden link
[19-Aug-2021 16:54:44 UTC] SITE: Request count 1
[19-Aug-2021 16:54:44 UTC] SITE: Importing request 1 ..
[19-Aug-2021 16:54:44 UTC] SITE: hidden link
[19-Aug-2021 16:54:44 UTC] SITE: Storing in option ast-block-templates-sites-1
[19-Aug-2021 16:54:44 UTC] SITE: Completed request 1
[19-Aug-2021 16:54:44 UTC] Sync process for Gutenberg Blocks is done.
[19-Aug-2021 16:57:29 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[19-Aug-2021 16:57:31 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[19-Aug-2021 16:57:32 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[19-Aug-2021 16:59:14 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[19-Aug-2021 16:59:14 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[19-Aug-2021 17:01:12 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[19-Aug-2021 17:01:15 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[19-Aug-2021 17:01:16 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[19-Aug-2021 17:06:59 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[19-Aug-2021 17:06:59 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[20-Aug-2021 14:43:52 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[20-Aug-2021 14:43:52 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[20-Aug-2021 14:44:20 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[20-Aug-2021 14:44:20 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[20-Aug-2021 14:46:16 UTC] PHP Notice: Trying to get property 'ID' of non-object in /home/diyhouse/public_html/web/wp-content/plugins/woocommerce-views/application/Helpers/wcviews-blocks.php on line 123
[20-Aug-2021 14:46:16 UTC] PHP Notice: Trying to get property 'post_type' of non-object in /home/diyhouse/public_html/web/wp-content/plugins/woocommerce-views/application/Helpers/wcviews-blocks.php on line 127
[20-Aug-2021 14:46:18 UTC] PHP Notice: Trying to get property 'ID' of non-object in /home/diyhouse/public_html/web/wp-content/plugins/woocommerce-views/application/Helpers/wcviews-blocks.php on line 123
[20-Aug-2021 14:46:18 UTC] PHP Notice: Trying to get property 'post_type' of non-object in /home/diyhouse/public_html/web/wp-content/plugins/woocommerce-views/application/Helpers/wcviews-blocks.php on line 127
[20-Aug-2021 14:46:19 UTC] PHP Notice: wp_enqueue_script() was called incorrectly. "wp-editor" script should not be enqueued together with the new widgets editor (wp-edit-widgets or wp-customize-widgets). Please see <a href="https://wordpress.org/support/article/debugging-in-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 5.8.0.) in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5535
[20-Aug-2021 14:51:27 UTC] PHP Notice: Trying to get property 'ID' of non-object in /home/diyhouse/public_html/web/wp-content/plugins/woocommerce-views/application/Helpers/wcviews-blocks.php on line 123
[20-Aug-2021 14:51:27 UTC] PHP Notice: Trying to get property 'post_type' of non-object in /home/diyhouse/public_html/web/wp-content/plugins/woocommerce-views/application/Helpers/wcviews-blocks.php on line 127
[20-Aug-2021 14:51:27 UTC] PHP Notice: wp_enqueue_script() was called incorrectly. "wp-editor" script should not be enqueued together with the new widgets editor (wp-edit-widgets or wp-customize-widgets). Please see <a href="https://wordpress.org/support/article/debugging-in-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 5.8.0.) in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5535
[20-Aug-2021 14:55:48 UTC] PHP Notice: Trying to get property 'ID' of non-object in /home/diyhouse/public_html/web/wp-content/plugins/woocommerce-views/application/Helpers/wcviews-blocks.php on line 123
[20-Aug-2021 14:55:48 UTC] PHP Notice: Trying to get property 'post_type' of non-object in /home/diyhouse/public_html/web/wp-content/plugins/woocommerce-views/application/Helpers/wcviews-blocks.php on line 127
[20-Aug-2021 14:59:01 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[20-Aug-2021 14:59:01 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[20-Aug-2021 15:00:49 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:00:50 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:04:36 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[20-Aug-2021 15:08:25 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[20-Aug-2021 15:08:29 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:08:29 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:09:57 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[20-Aug-2021 15:10:01 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:10:01 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:10:47 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[20-Aug-2021 15:10:49 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:10:50 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:12:39 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[20-Aug-2021 15:12:41 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:12:42 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:13:33 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:13:33 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:17:27 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[20-Aug-2021 15:17:30 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:17:30 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:17:52 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[20-Aug-2021 15:17:52 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:17:53 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:22:46 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[20-Aug-2021 15:22:56 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:22:57 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:26:00 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:26:01 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:26:18 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:26:19 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:26:21 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[20-Aug-2021 15:27:01 UTC] PHP Notice: Trying to get property 'ID' of non-object in /home/diyhouse/public_html/web/wp-content/plugins/woocommerce-views/application/Helpers/wcviews-blocks.php on line 123
[20-Aug-2021 15:27:01 UTC] PHP Notice: Trying to get property 'post_type' of non-object in /home/diyhouse/public_html/web/wp-content/plugins/woocommerce-views/application/Helpers/wcviews-blocks.php on line 127
[20-Aug-2021 15:28:59 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[20-Aug-2021 15:29:04 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:29:05 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:30:06 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[20-Aug-2021 15:30:07 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:30:08 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:33:10 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[20-Aug-2021 15:33:14 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:33:14 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:33:46 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:33:47 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:33:53 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[20-Aug-2021 15:35:38 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:35:38 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:36:09 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[20-Aug-2021 15:36:13 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:36:13 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:37:04 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[20-Aug-2021 15:37:10 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:37:10 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[20-Aug-2021 15:41:15 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[20-Aug-2021 15:41:15 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[23-Aug-2021 18:48:43 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 18:48:43 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 18:48:44 UTC] Sync process for Gutenberg Blocks has started.
[23-Aug-2021 18:48:44 UTC] CATEGORY:Importing categories..
[23-Aug-2021 18:48:44 UTC] CATEGORY:Storing in option ast-block-templates-categories
[23-Aug-2021 18:48:44 UTC] CATEGORY:Completed category import.
[23-Aug-2021 18:48:44 UTC] BLOCK: Getting Total Blocks
[23-Aug-2021 18:48:44 UTC] BLOCK: hidden link
[23-Aug-2021 18:48:44 UTC] BLOCK: Requests count 3
[23-Aug-2021 18:48:44 UTC] BLOCK: Importing request 1 ..
[23-Aug-2021 18:48:44 UTC] BLOCK: hidden link
[23-Aug-2021 18:48:44 UTC] BLOCK: Storing in option ast-block-templates-blocks-1
[23-Aug-2021 18:48:44 UTC] BLOCK: Completed request 1
[23-Aug-2021 18:48:44 UTC] BLOCK: Importing request 2 ..
[23-Aug-2021 18:48:44 UTC] BLOCK: hidden link
[23-Aug-2021 18:48:45 UTC] BLOCK: Storing in option ast-block-templates-blocks-2
[23-Aug-2021 18:48:45 UTC] BLOCK: Completed request 2
[23-Aug-2021 18:48:45 UTC] BLOCK: Importing request 3 ..
[23-Aug-2021 18:48:45 UTC] BLOCK: hidden link
[23-Aug-2021 18:48:45 UTC] BLOCK: Storing in option ast-block-templates-blocks-3
[23-Aug-2021 18:48:45 UTC] BLOCK: Completed request 3
[23-Aug-2021 18:48:45 UTC] SITE: Getting Total Sites
[23-Aug-2021 18:48:45 UTC] SITE: hidden link
[23-Aug-2021 18:48:45 UTC] SITE: Request count 1
[23-Aug-2021 18:48:45 UTC] SITE: Importing request 1 ..
[23-Aug-2021 18:48:45 UTC] SITE: hidden link
[23-Aug-2021 18:48:45 UTC] SITE: Storing in option ast-block-templates-sites-1
[23-Aug-2021 18:48:45 UTC] SITE: Completed request 1
[23-Aug-2021 18:48:45 UTC] Sync process for Gutenberg Blocks is done.
[23-Aug-2021 18:49:39 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 18:49:40 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 18:51:59 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 18:52:00 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 18:52:19 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Aug-2021 18:54:18 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 18:54:18 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 18:58:49 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 18:58:50 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:03:40 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Aug-2021 19:03:41 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:03:42 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:07:55 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Aug-2021 19:09:37 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:09:38 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:10:16 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:10:17 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:10:21 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Aug-2021 19:25:13 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Aug-2021 19:25:30 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:25:31 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:27:13 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:27:14 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:27:22 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Aug-2021 19:27:54 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:27:54 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:28:00 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Aug-2021 19:28:24 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Aug-2021 19:28:39 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:28:39 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:30:31 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Aug-2021 19:30:36 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:30:36 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Aug-2021 19:30:37 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:32:20 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Aug-2021 19:32:25 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:32:25 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:47:21 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:47:21 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:50:40 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Aug-2021 19:50:44 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:50:44 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:51:03 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:51:03 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:51:37 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Aug-2021 19:51:40 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:51:40 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:52:06 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:52:07 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:52:42 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:52:42 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 19:53:59 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Aug-2021 21:04:35 UTC] PHP Notice: Trying to get property 'ID' of non-object in /home/diyhouse/public_html/web/wp-content/plugins/woocommerce-views/application/Helpers/wcviews-blocks.php on line 123
[23-Aug-2021 21:04:35 UTC] PHP Notice: Trying to get property 'post_type' of non-object in /home/diyhouse/public_html/web/wp-content/plugins/woocommerce-views/application/Helpers/wcviews-blocks.php on line 127
[23-Aug-2021 21:10:59 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 21:11:00 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 21:14:43 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Aug-2021 21:15:45 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 21:15:46 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[23-Aug-2021 21:35:20 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[23-Aug-2021 21:35:20 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[23-Aug-2021 22:06:39 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[23-Aug-2021 22:06:42 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[24-Aug-2021 15:46:46 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[24-Aug-2021 15:46:46 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[24-Aug-2021 15:48:03 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[24-Aug-2021 15:48:03 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[24-Aug-2021 15:49:32 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[24-Aug-2021 15:52:39 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[24-Aug-2021 15:52:40 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[24-Aug-2021 15:53:45 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[24-Aug-2021 15:53:46 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[24-Aug-2021 15:53:46 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[24-Aug-2021 15:54:08 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[24-Aug-2021 15:54:08 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[24-Aug-2021 15:57:54 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[24-Aug-2021 15:57:54 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[24-Aug-2021 15:59:34 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[24-Aug-2021 15:59:34 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[24-Aug-2021 16:01:03 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[24-Aug-2021 16:01:03 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[24-Aug-2021 16:01:24 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[24-Aug-2021 16:01:24 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[24-Aug-2021 16:08:02 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[26-Aug-2021 15:54:05 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[26-Aug-2021 15:54:05 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[26-Aug-2021 15:54:07 UTC] Sync process for Gutenberg Blocks has started.
[26-Aug-2021 15:54:07 UTC] CATEGORY:Importing categories..
[26-Aug-2021 15:54:07 UTC] CATEGORY:Storing in option ast-block-templates-categories
[26-Aug-2021 15:54:07 UTC] CATEGORY:Completed category import.
[26-Aug-2021 15:54:07 UTC] BLOCK: Getting Total Blocks
[26-Aug-2021 15:54:07 UTC] BLOCK: hidden link
[26-Aug-2021 15:54:07 UTC] BLOCK: Requests count 3
[26-Aug-2021 15:54:07 UTC] BLOCK: Importing request 1 ..
[26-Aug-2021 15:54:07 UTC] BLOCK: hidden link
[26-Aug-2021 15:54:07 UTC] BLOCK: Storing in option ast-block-templates-blocks-1
[26-Aug-2021 15:54:07 UTC] BLOCK: Completed request 1
[26-Aug-2021 15:54:07 UTC] BLOCK: Importing request 2 ..
[26-Aug-2021 15:54:07 UTC] BLOCK: hidden link
[26-Aug-2021 15:54:08 UTC] BLOCK: Storing in option ast-block-templates-blocks-2
[26-Aug-2021 15:54:08 UTC] BLOCK: Completed request 2
[26-Aug-2021 15:54:08 UTC] BLOCK: Importing request 3 ..
[26-Aug-2021 15:54:08 UTC] BLOCK: hidden link
[26-Aug-2021 15:54:08 UTC] BLOCK: Storing in option ast-block-templates-blocks-3
[26-Aug-2021 15:54:08 UTC] BLOCK: Completed request 3
[26-Aug-2021 15:54:08 UTC] SITE: Getting Total Sites
[26-Aug-2021 15:54:08 UTC] SITE: hidden link
[26-Aug-2021 15:54:08 UTC] SITE: Request count 1
[26-Aug-2021 15:54:08 UTC] SITE: Importing request 1 ..
[26-Aug-2021 15:54:08 UTC] SITE: hidden link
[26-Aug-2021 15:54:08 UTC] SITE: Storing in option ast-block-templates-sites-1
[26-Aug-2021 15:54:08 UTC] SITE: Completed request 1
[26-Aug-2021 15:54:08 UTC] Sync process for Gutenberg Blocks is done.
[26-Aug-2021 15:54:59 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[26-Aug-2021 15:55:04 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[26-Aug-2021 15:55:05 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[26-Aug-2021 15:55:31 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[26-Aug-2021 15:55:31 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[26-Aug-2021 15:55:43 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[26-Aug-2021 15:55:44 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[26-Aug-2021 16:13:08 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[26-Aug-2021 16:13:08 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[26-Aug-2021 16:33:44 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[26-Aug-2021 16:33:44 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[26-Aug-2021 16:33:44 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[26-Aug-2021 16:34:02 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[26-Aug-2021 16:34:02 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[26-Aug-2021 16:34:54 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[26-Aug-2021 16:34:55 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[26-Aug-2021 16:34:55 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[26-Aug-2021 16:35:05 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[26-Aug-2021 16:35:06 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[26-Aug-2021 16:36:11 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[26-Aug-2021 16:36:11 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[26-Aug-2021 16:36:11 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[26-Aug-2021 16:36:19 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[26-Aug-2021 16:36:19 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[26-Aug-2021 16:37:45 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[26-Aug-2021 16:37:46 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[26-Aug-2021 16:37:53 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[26-Aug-2021 16:37:54 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[26-Aug-2021 16:37:54 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[26-Aug-2021 16:38:32 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[26-Aug-2021 16:38:32 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[26-Aug-2021 16:38:41 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[26-Aug-2021 16:38:41 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[26-Aug-2021 16:38:41 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[26-Aug-2021 16:43:16 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[26-Aug-2021 16:43:17 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[26-Aug-2021 16:43:26 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[26-Aug-2021 16:43:27 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[26-Aug-2021 16:43:27 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[26-Aug-2021 16:44:20 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[26-Aug-2021 16:44:21 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[26-Aug-2021 16:44:32 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[26-Aug-2021 16:44:33 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[26-Aug-2021 16:44:33 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[26-Aug-2021 16:44:37 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[26-Aug-2021 16:44:37 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[26-Aug-2021 16:45:28 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[26-Aug-2021 16:45:28 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[26-Aug-2021 16:47:47 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[26-Aug-2021 16:47:47 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[26-Aug-2021 16:47:47 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[26-Aug-2021 16:48:19 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[26-Aug-2021 16:48:19 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[26-Aug-2021 16:49:40 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[26-Aug-2021 16:49:40 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[26-Aug-2021 16:50:02 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[26-Aug-2021 16:50:02 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[26-Aug-2021 16:50:21 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[26-Aug-2021 16:50:21 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[26-Aug-2021 16:51:32 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[26-Aug-2021 16:51:32 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[26-Aug-2021 16:52:34 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[26-Aug-2021 16:52:34 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[26-Aug-2021 18:19:09 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[26-Aug-2021 18:19:09 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[26-Aug-2021 18:19:19 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[26-Aug-2021 18:19:19 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[26-Aug-2021 18:20:15 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[26-Aug-2021 18:20:15 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[26-Aug-2021 19:54:00 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[26-Aug-2021 19:54:00 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[26-Aug-2021 19:56:08 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[26-Aug-2021 19:56:08 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[26-Aug-2021 22:37:24 UTC] PHP Notice: Trying to get property 'ID' of non-object in /home/diyhouse/public_html/web/wp-content/plugins/woocommerce-views/application/Helpers/wcviews-blocks.php on line 123
[26-Aug-2021 22:37:24 UTC] PHP Notice: Trying to get property 'post_type' of non-object in /home/diyhouse/public_html/web/wp-content/plugins/woocommerce-views/application/Helpers/wcviews-blocks.php on line 127
[26-Aug-2021 22:44:55 UTC] PHP Warning: chmod(): No such file or directory in /home/diyhouse/public_html/web/wp-admin/includes/class-wp-filesystem-direct.php on line 173
[26-Aug-2021 22:45:48 UTC] PHP Notice: Trying to get property 'ID' of non-object in /home/diyhouse/public_html/web/wp-content/plugins/woocommerce-views/application/Helpers/wcviews-blocks.php on line 123
[26-Aug-2021 22:45:48 UTC] PHP Notice: Trying to get property 'post_type' of non-object in /home/diyhouse/public_html/web/wp-content/plugins/woocommerce-views/application/Helpers/wcviews-blocks.php on line 127
[26-Aug-2021 22:51:25 UTC] PHP Notice: Trying to access array offset on value of type null in /home/diyhouse/public_html/web/wp-content/plugins/astra-addon/classes/cache/class-astra-cache.php on line 92
[26-Aug-2021 22:51:25 UTC] PHP Notice: Trying to access array offset on value of type null in /home/diyhouse/public_html/web/wp-content/plugins/astra-addon/classes/cache/class-astra-addon-cache.php on line 96
[27-Aug-2021 21:12:15 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[27-Aug-2021 21:12:15 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[27-Aug-2021 21:12:43 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[27-Aug-2021 21:12:43 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[30-Aug-2021 16:09:31 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[30-Aug-2021 16:09:31 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[30-Aug-2021 16:09:57 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[30-Aug-2021 16:09:58 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[30-Aug-2021 16:09:59 UTC] Sync process for Gutenberg Blocks has started.
[30-Aug-2021 16:09:59 UTC] CATEGORY:Importing categories..
[30-Aug-2021 16:10:00 UTC] CATEGORY:Storing in option ast-block-templates-categories
[30-Aug-2021 16:10:00 UTC] CATEGORY:Completed category import.
[30-Aug-2021 16:10:00 UTC] BLOCK: Getting Total Blocks
[30-Aug-2021 16:10:00 UTC] BLOCK: hidden link
[30-Aug-2021 16:10:00 UTC] BLOCK: Requests count 4
[30-Aug-2021 16:10:00 UTC] BLOCK: Importing request 1 ..
[30-Aug-2021 16:10:00 UTC] BLOCK: hidden link
[30-Aug-2021 16:10:00 UTC] BLOCK: Storing in option ast-block-templates-blocks-1
[30-Aug-2021 16:10:00 UTC] BLOCK: Completed request 1
[30-Aug-2021 16:10:00 UTC] BLOCK: Importing request 2 ..
[30-Aug-2021 16:10:00 UTC] BLOCK: hidden link
[30-Aug-2021 16:10:00 UTC] BLOCK: Storing in option ast-block-templates-blocks-2
[30-Aug-2021 16:10:00 UTC] BLOCK: Completed request 2
[30-Aug-2021 16:10:00 UTC] BLOCK: Importing request 3 ..
[30-Aug-2021 16:10:00 UTC] BLOCK: hidden link
[30-Aug-2021 16:10:00 UTC] BLOCK: Storing in option ast-block-templates-blocks-3
[30-Aug-2021 16:10:00 UTC] BLOCK: Completed request 3
[30-Aug-2021 16:10:00 UTC] BLOCK: Importing request 4 ..
[30-Aug-2021 16:10:00 UTC] BLOCK: hidden link
[30-Aug-2021 16:10:00 UTC] BLOCK: Storing in option ast-block-templates-blocks-4
[30-Aug-2021 16:10:00 UTC] BLOCK: Completed request 4
[30-Aug-2021 16:10:00 UTC] SITE: Getting Total Sites
[30-Aug-2021 16:10:00 UTC] SITE: hidden link
[30-Aug-2021 16:10:00 UTC] SITE: Request count 1
[30-Aug-2021 16:10:00 UTC] SITE: Importing request 1 ..
[30-Aug-2021 16:10:00 UTC] SITE: hidden link
[30-Aug-2021 16:10:01 UTC] SITE: Storing in option ast-block-templates-sites-1
[30-Aug-2021 16:10:01 UTC] SITE: Completed request 1
[30-Aug-2021 16:10:01 UTC] Sync process for Gutenberg Blocks is done.
[30-Aug-2021 16:10:33 UTC] PHP Notice: Undefined index: current_post_id in /home/diyhouse/public_html/web/wp-content/plugins/cred-frontend-editor/vendor/toolset/common-es/server/Rest/Route/ShortcodeRender.php on line 32
[30-Aug-2021 16:10:33 UTC] PHP Notice: Undefined index: current_post_id in /home/diyhouse/public_html/web/wp-content/plugins/cred-frontend-editor/vendor/toolset/common-es/server/Rest/Route/ShortcodeRender.php on line 35
[30-Aug-2021 16:10:33 UTC] PHP Notice: Undefined index: current_post_id in /home/diyhouse/public_html/web/wp-content/plugins/cred-frontend-editor/vendor/toolset/common-es/server/Rest/Route/ShortcodeRender.php on line 32
[30-Aug-2021 16:10:33 UTC] PHP Notice: Undefined index: current_post_id in /home/diyhouse/public_html/web/wp-content/plugins/cred-frontend-editor/vendor/toolset/common-es/server/Rest/Route/ShortcodeRender.php on line 35
[30-Aug-2021 16:12:12 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[30-Aug-2021 16:12:13 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[30-Aug-2021 16:12:16 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[30-Aug-2021 16:12:16 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[30-Aug-2021 16:12:20 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[30-Aug-2021 16:12:21 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[30-Aug-2021 16:27:26 UTC] PHP Notice: Trying to get property 'ID' of non-object in /home/diyhouse/public_html/web/wp-content/plugins/woocommerce-views/application/Helpers/wcviews-blocks.php on line 123
[30-Aug-2021 16:27:26 UTC] PHP Notice: Trying to get property 'post_type' of non-object in /home/diyhouse/public_html/web/wp-content/plugins/woocommerce-views/application/Helpers/wcviews-blocks.php on line 127
[30-Aug-2021 16:27:52 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[30-Aug-2021 16:27:52 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[30-Aug-2021 16:28:32 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[30-Aug-2021 16:28:32 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[30-Aug-2021 16:28:52 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[30-Aug-2021 16:28:52 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[30-Aug-2021 16:29:59 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[30-Aug-2021 16:29:59 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[30-Aug-2021 16:30:12 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[30-Aug-2021 16:30:13 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[30-Aug-2021 16:34:12 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[30-Aug-2021 16:34:13 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[30-Aug-2021 16:34:24 UTC] PHP Notice: Trying to get property 'ID' of non-object in /home/diyhouse/public_html/web/wp-content/plugins/woocommerce-views/application/Helpers/wcviews-blocks.php on line 123
[30-Aug-2021 16:34:24 UTC] PHP Notice: Trying to get property 'post_type' of non-object in /home/diyhouse/public_html/web/wp-content/plugins/woocommerce-views/application/Helpers/wcviews-blocks.php on line 127
[30-Aug-2021 16:34:53 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[30-Aug-2021 16:34:53 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[30-Aug-2021 16:34:53 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[30-Aug-2021 16:34:53 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[30-Aug-2021 16:34:55 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[30-Aug-2021 16:34:55 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[30-Aug-2021 16:34:55 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[30-Aug-2021 16:34:55 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[30-Aug-2021 16:39:09 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[30-Aug-2021 16:39:09 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[30-Aug-2021 17:04:07 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[30-Aug-2021 17:04:07 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[30-Aug-2021 17:04:09 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[30-Aug-2021 17:04:09 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[30-Aug-2021 17:04:15 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[30-Aug-2021 17:04:15 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[30-Aug-2021 17:04:37 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[30-Aug-2021 17:04:37 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[30-Aug-2021 17:06:44 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[30-Aug-2021 17:06:44 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[30-Aug-2021 17:06:52 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[30-Aug-2021 17:06:52 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[31-Aug-2021 17:00:02 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[31-Aug-2021 17:00:02 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[31-Aug-2021 17:00:11 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[31-Aug-2021 17:00:11 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[31-Aug-2021 17:00:16 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[31-Aug-2021 17:00:16 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[31-Aug-2021 17:00:29 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[31-Aug-2021 17:00:29 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[31-Aug-2021 17:04:47 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[31-Aug-2021 17:04:47 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[31-Aug-2021 21:41:32 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[31-Aug-2021 21:41:32 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[31-Aug-2021 22:23:52 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[31-Aug-2021 22:23:52 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[31-Aug-2021 22:23:53 UTC] Sync process for Gutenberg Blocks has started.
[31-Aug-2021 22:23:53 UTC] CATEGORY:Importing categories..
[31-Aug-2021 22:23:53 UTC] CATEGORY:Storing in option ast-block-templates-categories
[31-Aug-2021 22:23:53 UTC] CATEGORY:Completed category import.
[31-Aug-2021 22:23:53 UTC] BLOCK: Getting Total Blocks
[31-Aug-2021 22:23:53 UTC] BLOCK: hidden link
[31-Aug-2021 22:23:53 UTC] BLOCK: Requests count 4
[31-Aug-2021 22:23:53 UTC] BLOCK: Importing request 1 ..
[31-Aug-2021 22:23:53 UTC] BLOCK: hidden link
[31-Aug-2021 22:23:53 UTC] BLOCK: Storing in option ast-block-templates-blocks-1
[31-Aug-2021 22:23:53 UTC] BLOCK: Completed request 1
[31-Aug-2021 22:23:53 UTC] BLOCK: Importing request 2 ..
[31-Aug-2021 22:23:53 UTC] BLOCK: hidden link
[31-Aug-2021 22:23:53 UTC] BLOCK: Storing in option ast-block-templates-blocks-2
[31-Aug-2021 22:23:53 UTC] BLOCK: Completed request 2
[31-Aug-2021 22:23:53 UTC] BLOCK: Importing request 3 ..
[31-Aug-2021 22:23:53 UTC] BLOCK: hidden link
[31-Aug-2021 22:23:53 UTC] BLOCK: Storing in option ast-block-templates-blocks-3
[31-Aug-2021 22:23:53 UTC] BLOCK: Completed request 3
[31-Aug-2021 22:23:53 UTC] BLOCK: Importing request 4 ..
[31-Aug-2021 22:23:53 UTC] BLOCK: hidden link
[31-Aug-2021 22:23:53 UTC] BLOCK: Storing in option ast-block-templates-blocks-4
[31-Aug-2021 22:23:53 UTC] BLOCK: Completed request 4
[31-Aug-2021 22:23:53 UTC] SITE: Getting Total Sites
[31-Aug-2021 22:23:53 UTC] SITE: hidden link
[31-Aug-2021 22:23:53 UTC] SITE: Request count 1
[31-Aug-2021 22:23:53 UTC] SITE: Importing request 1 ..
[31-Aug-2021 22:23:53 UTC] SITE: hidden link
[31-Aug-2021 22:23:53 UTC] SITE: Storing in option ast-block-templates-sites-1
[31-Aug-2021 22:23:53 UTC] SITE: Completed request 1
[31-Aug-2021 22:23:53 UTC] Sync process for Gutenberg Blocks is done.
[31-Aug-2021 22:25:05 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[31-Aug-2021 22:25:06 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[31-Aug-2021 22:29:00 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[31-Aug-2021 22:29:01 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[31-Aug-2021 22:38:48 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[31-Aug-2021 22:38:48 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[31-Aug-2021 22:42:13 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[31-Aug-2021 22:42:14 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[01-Sep-2021 22:12:29 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[01-Sep-2021 22:12:29 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[01-Sep-2021 22:19:42 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[01-Sep-2021 22:19:42 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[01-Sep-2021 22:23:39 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[01-Sep-2021 22:23:39 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[01-Sep-2021 22:25:17 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[01-Sep-2021 22:25:18 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[01-Sep-2021 22:25:18 UTC] Sync process for Gutenberg Blocks has started.
[01-Sep-2021 22:25:18 UTC] CATEGORY:Importing categories..
[01-Sep-2021 22:25:18 UTC] CATEGORY:Storing in option ast-block-templates-categories
[01-Sep-2021 22:25:18 UTC] CATEGORY:Completed category import.
[01-Sep-2021 22:25:18 UTC] BLOCK: Getting Total Blocks
[01-Sep-2021 22:25:18 UTC] BLOCK: hidden link
[01-Sep-2021 22:25:18 UTC] BLOCK: Requests count 4
[01-Sep-2021 22:25:18 UTC] BLOCK: Importing request 1 ..
[01-Sep-2021 22:25:18 UTC] BLOCK: hidden link
[01-Sep-2021 22:25:18 UTC] BLOCK: Storing in option ast-block-templates-blocks-1
[01-Sep-2021 22:25:18 UTC] BLOCK: Completed request 1
[01-Sep-2021 22:25:18 UTC] BLOCK: Importing request 2 ..
[01-Sep-2021 22:25:18 UTC] BLOCK: hidden link
[01-Sep-2021 22:25:19 UTC] BLOCK: Storing in option ast-block-templates-blocks-2
[01-Sep-2021 22:25:19 UTC] BLOCK: Completed request 2
[01-Sep-2021 22:25:19 UTC] BLOCK: Importing request 3 ..
[01-Sep-2021 22:25:19 UTC] BLOCK: hidden link
[01-Sep-2021 22:25:19 UTC] BLOCK: Storing in option ast-block-templates-blocks-3
[01-Sep-2021 22:25:19 UTC] BLOCK: Completed request 3
[01-Sep-2021 22:25:19 UTC] BLOCK: Importing request 4 ..
[01-Sep-2021 22:25:19 UTC] BLOCK: hidden link
[01-Sep-2021 22:25:19 UTC] BLOCK: Storing in option ast-block-templates-blocks-4
[01-Sep-2021 22:25:19 UTC] BLOCK: Completed request 4
[01-Sep-2021 22:25:19 UTC] SITE: Getting Total Sites
[01-Sep-2021 22:25:19 UTC] SITE: hidden link
[01-Sep-2021 22:25:19 UTC] SITE: Request count 1
[01-Sep-2021 22:25:19 UTC] SITE: Importing request 1 ..
[01-Sep-2021 22:25:19 UTC] SITE: hidden link
[01-Sep-2021 22:25:19 UTC] SITE: Storing in option ast-block-templates-sites-1
[01-Sep-2021 22:25:19 UTC] SITE: Completed request 1
[01-Sep-2021 22:25:19 UTC] Sync process for Gutenberg Blocks is done.
[01-Sep-2021 22:28:20 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[01-Sep-2021 22:28:20 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[01-Sep-2021 22:34:43 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[01-Sep-2021 22:34:44 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[01-Sep-2021 22:38:18 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[01-Sep-2021 22:38:18 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[01-Sep-2021 22:41:32 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[01-Sep-2021 22:41:32 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[01-Sep-2021 22:42:11 UTC] PHP Warning: parse_url() expects parameter 1 to be string, array given in /home/diyhouse/public_html/web/wp-includes/media.php on line 4867
[01-Sep-2021 22:42:11 UTC] PHP Warning: strpos() expects parameter 1 to be string, array given in /home/diyhouse/public_html/web/wp-includes/media.php on line 4874
[01-Sep-2021 22:44:16 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[01-Sep-2021 22:44:17 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[01-Sep-2021 22:44:55 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[01-Sep-2021 22:44:55 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[01-Sep-2021 22:47:41 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[01-Sep-2021 22:50:51 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[01-Sep-2021 22:50:51 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[01-Sep-2021 22:54:22 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[01-Sep-2021 22:54:22 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[02-Sep-2021 15:16:35 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[02-Sep-2021 15:16:35 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[02-Sep-2021 15:44:41 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[02-Sep-2021 15:44:42 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[02-Sep-2021 15:52:52 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[02-Sep-2021 15:52:53 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[02-Sep-2021 15:53:49 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[02-Sep-2021 15:53:49 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[02-Sep-2021 15:57:26 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[02-Sep-2021 15:57:27 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[02-Sep-2021 16:01:01 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[02-Sep-2021 16:01:02 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[02-Sep-2021 16:02:07 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[02-Sep-2021 16:02:08 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[02-Sep-2021 16:02:49 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[02-Sep-2021 16:02:50 UTC] PHP Deprecated: block_categories is deprecated since version 5.8.0! Use block_categories_all instead. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5458
[02-Sep-2021 16:12:20 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[02-Sep-2021 16:12:20 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[02-Sep-2021 16:13:25 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[02-Sep-2021 16:17:24 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[02-Sep-2021 16:17:24 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[02-Sep-2021 16:21:01 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[02-Sep-2021 16:21:01 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[02-Sep-2021 17:27:54 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[02-Sep-2021 17:27:54 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[02-Sep-2021 17:56:23 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[02-Sep-2021 17:56:23 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[02-Sep-2021 18:12:08 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[02-Sep-2021 18:12:08 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[02-Sep-2021 18:31:51 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[02-Sep-2021 18:31:51 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[02-Sep-2021 18:33:06 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[02-Sep-2021 18:33:06 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[02-Sep-2021 18:33:12 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[02-Sep-2021 18:33:12 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[02-Sep-2021 21:32:23 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[02-Sep-2021 21:32:23 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[02-Sep-2021 21:32:31 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[02-Sep-2021 21:32:31 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[02-Sep-2021 21:48:05 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[02-Sep-2021 21:48:05 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[03-Sep-2021 21:51:56 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[03-Sep-2021 21:51:56 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[03-Sep-2021 21:55:11 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[03-Sep-2021 21:55:11 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[03-Sep-2021 21:55:38 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[03-Sep-2021 21:55:38 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[03-Sep-2021 21:56:55 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[03-Sep-2021 21:56:55 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[03-Sep-2021 21:57:14 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[03-Sep-2021 21:57:14 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[03-Sep-2021 22:02:21 UTC] PHP Notice: Trying to get property 'ID' of non-object in /home/diyhouse/public_html/web/wp-content/plugins/woocommerce-views/application/Helpers/wcviews-blocks.php on line 123
[03-Sep-2021 22:02:21 UTC] PHP Notice: Trying to get property 'post_type' of non-object in /home/diyhouse/public_html/web/wp-content/plugins/woocommerce-views/application/Helpers/wcviews-blocks.php on line 127
[03-Sep-2021 22:02:49 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[03-Sep-2021 22:02:49 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[03-Sep-2021 22:03:15 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[03-Sep-2021 22:03:15 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[03-Sep-2021 22:03:39 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[03-Sep-2021 22:03:39 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[03-Sep-2021 22:08:11 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[03-Sep-2021 22:08:11 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[03-Sep-2021 22:08:20 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[03-Sep-2021 22:08:20 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[03-Sep-2021 22:08:32 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[03-Sep-2021 22:08:32 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[03-Sep-2021 22:08:44 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[03-Sep-2021 22:08:44 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[03-Sep-2021 22:08:46 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[03-Sep-2021 22:08:46 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[03-Sep-2021 22:09:05 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[03-Sep-2021 22:09:05 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[03-Sep-2021 22:09:13 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[03-Sep-2021 22:09:13 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[03-Sep-2021 22:09:32 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[03-Sep-2021 22:09:32 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[03-Sep-2021 22:10:19 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[07-Sep-2021 19:36:26 UTC] Astra Addon: Batch Process Started!
[07-Sep-2021 19:36:26 UTC] Astra Addon: Queuing 3.5.8 - astra_sticky_header_site_title_tagline_css
[07-Sep-2021 19:36:26 UTC] Astra Addon: Queuing 3.5.9 - astra_addon_remove_responsive_account_menu_colors_support
[07-Sep-2021 19:36:29 UTC] Astra Addon: DB version updated!
[07-Sep-2021 19:36:30 UTC] Astra Addon: Batch Process Completed!
[07-Sep-2021 19:40:57 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[07-Sep-2021 19:41:32 UTC] PHP Notice: Trying to get property 'ID' of non-object in /home/diyhouse/public_html/web/wp-content/plugins/woocommerce-views/application/Helpers/wcviews-blocks.php on line 123
[07-Sep-2021 19:41:32 UTC] PHP Notice: Trying to get property 'post_type' of non-object in /home/diyhouse/public_html/web/wp-content/plugins/woocommerce-views/application/Helpers/wcviews-blocks.php on line 127
[07-Sep-2021 19:41:43 UTC] PHP Notice: Undefined variable: qsid in /home/diyhouse/public_html/web/wp-content/plugins/child-theme-configurator/includes/classes/CSS.php on line 958
[07-Sep-2021 19:41:43 UTC] PHP Notice: Undefined variable: qsid in /home/diyhouse/public_html/web/wp-content/plugins/child-theme-configurator/includes/classes/CSS.php on line 960
[07-Sep-2021 19:41:43 UTC] PHP Notice: Undefined variable: qsid in /home/diyhouse/public_html/web/wp-content/plugins/child-theme-configurator/includes/classes/CSS.php on line 967
[07-Sep-2021 19:41:43 UTC] PHP Notice: Undefined variable: qsid in /home/diyhouse/public_html/web/wp-content/plugins/child-theme-configurator/includes/classes/CSS.php on line 968
[07-Sep-2021 19:41:43 UTC] PHP Notice: Undefined variable: qsid in /home/diyhouse/public_html/web/wp-content/plugins/child-theme-configurator/includes/classes/CSS.php on line 971
[07-Sep-2021 19:44:42 UTC] PHP Notice: Trying to get property 'ID' of non-object in /home/diyhouse/public_html/web/wp-content/plugins/woocommerce-views/application/Helpers/wcviews-blocks.php on line 123
[07-Sep-2021 19:44:42 UTC] PHP Notice: Trying to get property 'post_type' of non-object in /home/diyhouse/public_html/web/wp-content/plugins/woocommerce-views/application/Helpers/wcviews-blocks.php on line 127
[08-Sep-2021 18:21:17 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5468
[08-Sep-2021 18:21:51 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[08-Sep-2021 18:21:51 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[09-Sep-2021 17:57:14 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[09-Sep-2021 17:57:14 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[09-Sep-2021 18:04:21 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5596
[09-Sep-2021 18:05:00 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5596
[09-Sep-2021 18:05:00 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5596
[09-Sep-2021 18:05:00 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5596
[09-Sep-2021 18:05:32 UTC] PHP Notice: Trying to get property 'ID' of non-object in /home/diyhouse/public_html/web/wp-content/plugins/woocommerce-views/application/Helpers/wcviews-blocks.php on line 123
[09-Sep-2021 18:05:32 UTC] PHP Notice: Trying to get property 'post_type' of non-object in /home/diyhouse/public_html/web/wp-content/plugins/woocommerce-views/application/Helpers/wcviews-blocks.php on line 127
[09-Sep-2021 19:30:15 UTC] PHP Warning: Packets out of order. Expected 0 received 1. Packet size=23 in /home/diyhouse/public_html/web/wp-includes/wp-db.php on line 1653
[09-Sep-2021 19:30:15 UTC] PHP Warning: mysqli_real_connect(): Error while reading greeting packet. PID=13454 in /home/diyhouse/public_html/web/wp-includes/wp-db.php on line 1653
[09-Sep-2021 19:30:15 UTC] PHP Warning: mysqli_real_connect(): (HY000/2006): MySQL server has gone away in /home/diyhouse/public_html/web/wp-includes/wp-db.php on line 1653
[09-Sep-2021 19:30:20 UTC] PHP Warning: mysqli_real_connect(): (HY000/1040): Too many connections in /home/diyhouse/public_html/web/wp-includes/wp-db.php on line 1653
[09-Sep-2021 19:30:25 UTC] PHP Warning: mysqli_real_connect(): (HY000/1040): Too many connections in /home/diyhouse/public_html/web/wp-includes/wp-db.php on line 1653
[10-Sep-2021 21:14:56 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5596
[10-Sep-2021 21:15:16 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5596
[15-Sep-2021 18:31:08 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[15-Sep-2021 18:31:08 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[15-Sep-2021 18:31:25 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[15-Sep-2021 18:31:25 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[15-Sep-2021 18:31:36 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[15-Sep-2021 18:31:36 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[15-Sep-2021 18:31:39 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[15-Sep-2021 18:31:39 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[15-Sep-2021 18:31:43 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[15-Sep-2021 18:31:43 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[15-Sep-2021 18:31:54 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[15-Sep-2021 18:31:54 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[15-Sep-2021 18:33:08 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5596
[15-Sep-2021 18:38:54 UTC] PHP Deprecated: uagb_post_for_stylesheet is deprecated since version 1.23.0 with no alternative available. in /home/diyhouse/public_html/web/wp-includes/functions.php on line 5596
[15-Sep-2021 23:12:12 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[15-Sep-2021 23:12:12 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[23-Sep-2021 14:59:00 UTC] Astra Addon: DB version updated!
[23-Sep-2021 14:59:07 UTC] Astra Addon: DB version updated!
[24-Sep-2021 15:03:29 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[24-Sep-2021 15:03:29 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[24-Sep-2021 15:07:40 UTC] Sync process for Gutenberg Blocks has started.
[24-Sep-2021 15:07:40 UTC] CATEGORY:Importing categories..
[24-Sep-2021 15:07:40 UTC] CATEGORY:Storing in option ast-block-templates-categories
[24-Sep-2021 15:07:40 UTC] CATEGORY:Completed category import.
[24-Sep-2021 15:07:40 UTC] BLOCK: Getting Total Blocks
[24-Sep-2021 15:07:40 UTC] BLOCK: hidden link
[24-Sep-2021 15:07:40 UTC] BLOCK: Requests count 3
[24-Sep-2021 15:07:40 UTC] BLOCK: Importing request 1 ..
[24-Sep-2021 15:07:40 UTC] BLOCK: hidden link
[24-Sep-2021 15:07:40 UTC] BLOCK: Storing in option ast-block-templates-blocks-1
[24-Sep-2021 15:07:40 UTC] BLOCK: Completed request 1
[24-Sep-2021 15:07:40 UTC] BLOCK: Importing request 2 ..
[24-Sep-2021 15:07:40 UTC] BLOCK: hidden link
[24-Sep-2021 15:07:40 UTC] BLOCK: Storing in option ast-block-templates-blocks-2
[24-Sep-2021 15:07:40 UTC] BLOCK: Completed request 2
[24-Sep-2021 15:07:40 UTC] BLOCK: Importing request 3 ..
[24-Sep-2021 15:07:40 UTC] BLOCK: hidden link
[24-Sep-2021 15:07:40 UTC] BLOCK: Storing in option ast-block-templates-blocks-3
[24-Sep-2021 15:07:40 UTC] BLOCK: Completed request 3
[24-Sep-2021 15:07:40 UTC] SITE: Getting Total Sites
[24-Sep-2021 15:07:40 UTC] SITE: hidden link
[24-Sep-2021 15:07:41 UTC] SITE: Request count 1
[24-Sep-2021 15:07:41 UTC] SITE: Importing request 1 ..
[24-Sep-2021 15:07:41 UTC] SITE: hidden link
[24-Sep-2021 15:07:41 UTC] SITE: Storing in option ast-block-templates-sites-1
[24-Sep-2021 15:07:41 UTC] SITE: Completed request 1
[24-Sep-2021 15:07:41 UTC] Sync process for Gutenberg Blocks is done.
[28-Sep-2021 19:12:08 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[28-Sep-2021 19:12:08 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[29-Sep-2021 16:56:51 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[29-Sep-2021 16:56:51 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[29-Sep-2021 19:35:45 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[29-Sep-2021 19:35:45 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[30-Sep-2021 22:35:14 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[30-Sep-2021 22:35:14 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[30-Sep-2021 22:55:58 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[30-Sep-2021 22:55:58 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[04-Oct-2021 15:09:22 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[04-Oct-2021 15:09:22 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[04-Oct-2021 15:54:54 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[04-Oct-2021 15:54:54 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[04-Oct-2021 16:39:52 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[04-Oct-2021 16:39:52 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[05-Oct-2021 14:57:41 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 52
[05-Oct-2021 14:57:41 UTC] PHP Notice: Undefined variable: menu_position in /home/diyhouse/public_html/web/wp-content/plugins/customize-my-account-for-woocommerce/templates/myaccount/navigation.php on line 56
[05-Oct-2021 15:04:36 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 15:04:44 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 15:04:44 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 15:05:00 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 15:05:46 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 15:05:56 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 15:05:59 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 15:06:10 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 15:07:00 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 15:08:58 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 15:10:59 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 15:12:59 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 15:15:00 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 15:38:56 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 15:39:52 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 15:39:58 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 15:40:58 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 15:43:00 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 15:45:00 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 15:47:13 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 15:49:18 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 15:58:49 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 16:00:52 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 16:02:50 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 16:04:51 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 16:06:52 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 16:08:54 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 16:20:28 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 16:22:28 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 16:24:30 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 16:26:30 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 16:28:32 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 16:30:40 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 16:37:12 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 16:37:17 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 16:37:32 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 16:37:53 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 16:37:54 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 16:37:55 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 16:38:53 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 16:39:13 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10
[05-Oct-2021 16:39:25 UTC] PHP Fatal error: Cannot redeclare my_validation() (previously declared in /home/diyhouse/public_html/web/wp-content/toolset-customizations/four_image_validation.php:11) in /home/diyhouse/public_html/web/wp-content/toolset-customizations/form_validation.php on line 10

#2188971

Shane
Supporter

Languages: English (English )

Timezone: America/Jamaica (GMT-05:00)

Hi Philip,

The code is correct.

The problem is that the function name is already being used. I've changed the function name in the code below so this should now resolve the issue.

add_filter('cred_form_validate','max_four_img',10,2);
function max_four_img($error_fields, $form_data)
{
//field data are field values and errors
list($fields,$errors)=$error_fields;
//uncomment this if you want to print the field values
//print_r($fields);
//validate if specific form
if ($form_data['id']==331)
{
//check my_field value
if (count($fields['wpcf-graiding-and-drainage-photos']) > 4)
{
//set error message for my_field
$errors['graiding-and-drainage-photos']='Only a maximum of 4 images can be uploaded per item being inspected';
}

}
//return result
return array($fields,$errors);
}

Please try this now and let me know if everything is ok.

Thanks,
Shane

#2188979

Shane
Supporter

Languages: English (English )

Timezone: America/Jamaica (GMT-05:00)

Hi Philip,

The code is correct.

The problem is that the function name is already being used. I've changed the function name in the code below so this should now resolve the issue.

add_filter('cred_form_validate','max_four_img',10,2);
function max_four_img($error_fields, $form_data)
{
//field data are field values and errors
list($fields,$errors)=$error_fields;
//uncomment this if you want to print the field values
//print_r($fields);
//validate if specific form
if ($form_data['id']==331)
{
//check my_field value
if (count($fields['wpcf-graiding-and-drainage-photos']) > 4)
{
//set error message for my_field
$errors['graiding-and-drainage-photos']='Only a maximum of 4 images can be uploaded per item being inspected';
}

}
//return result
return array($fields,$errors);
}

Please try this now and let me know if everything is ok.

Thanks,
Shane

#2189911
Screen Shot 2021-10-07 at 9.28.08 AM.png
Screen Shot 2021-10-07 at 9.28.00 AM.png

Goodmorning Shane,

We appreciate all your help, your code works! We applied it to "Roof Covering Photos" and we are getting an error.

How can we fix this when applied to the rest of the image photos fields?

#2190031

Shane
Supporter

Languages: English (English )

Timezone: America/Jamaica (GMT-05:00)

Hi Philip,

The problem is that you've formatted the code incorrectly. The code should only have one return statement. I can see that you have 2 which is causing the entire code to break.

Essentially what is happening is that the function is being closed earlier than expect. Try this.

add_filter('cred_form_validate','max_four_img',10,2);
function max_four_img($error_fields, $form_data)
{
//field data are field values and errors
list($fields,$errors)=$error_fields;
//uncomment this if you want to print the field values
//print_r($fields);
//validate if specific form
if ($form_data['id']==331)
{
//check graiding-and-drainage-photos count value
if (count($fields['wpcf-graiding-and-drainage-photos']) > 4)
{
//set error message for my_field
$errors['graiding-and-drainage-photos']='Only a maximum of 4 images can be uploaded per item being inspected';
}
 //check my_field value
if (count($fields['wpcf-roof-cover-photos']) > 4)
{
//set error message for my_field
$errors['roof-cover-photos']='Only a maximum of 4 images can be uploaded per item being inspected';
}
}
//return result
return array($fields,$errors);
}

Please let me know if this works now.

Thanks,
Shane

#2190205
Screen Shot 2021-10-07 at 4.21.25 PM.png

Hello Shane,

We have tested Roof Covering Photos and the code works but gives the incorrect error message. It is giving the error message for Graiding and Drainage "Graiding and Drainage Photos: Only a maximum of 4 images can be uploaded per item being inspected"

#2190239

Shane
Supporter

Languages: English (English )

Timezone: America/Jamaica (GMT-05:00)

Hi Philip,

It seems the slug that I used was incorrect based on your screenshot.

add_filter('cred_form_validate','max_four_img',10,2);
function max_four_img($error_fields, $form_data)
{
//field data are field values and errors
list($fields,$errors)=$error_fields;
//uncomment this if you want to print the field values
//print_r($fields);
//validate if specific form
if ($form_data['id']==331)
{
//check graiding-and-drainage-photos count value
if (count($fields['wpcf-graiding-and-drainage-photos']) > 4)
{
//set error message for my_field
$errors['graiding-and-drainage-photos']='Only a maximum of 4 images can be uploaded per item being inspected';
}
 //check my_field value
if (count($fields['wpcf-roof-covering-photos']) > 4)
{
//set error message for my_field
$errors['roof-covering-photos']='Only a maximum of 4 images can be uploaded per item being inspected';
}
}
//return result
return array($fields,$errors);
}

This should be correct now.

Thanks,
Shane

#2190251
Screen Shot 2021-10-07 at 5.08.24 PM.png

Hello Shane,

We tested Roof Covering photos and it "added" to the previous error message. Is there any way it can specify "Roof Covering" only?

#2190839

Shane
Supporter

Languages: English (English )

Timezone: America/Jamaica (GMT-05:00)

Hi Philip,

Are you referring to only having the Roof Covering error showing up when only that field fails to validate?

Please let me know.
Thanks,
Shane

#2190849

Yes sir, is that possible?

#2191041

Shane
Supporter

Languages: English (English )

Timezone: America/Jamaica (GMT-05:00)

Hi Philip,

Based on the code this is what should currently happen.

Would you mind providing me with access to the site so that I can test to see why this isn't already happening ?

I've enabled the private fields for your next response.

Thanks,
Shane

This ticket is now closed. If you're a WPML client and need related help, please open a new support ticket.