• Resolved acsafrica

    (@acsafrica)


    Link to Previous Ticket: https://ww.wp.xz.cn/support/topic/resource-usage-spikes/

    Hello WooCommerce Support Team,

    I am reopening my previous ticket, which was closed due to a delay in my response as I was conducting further investigation. I have now gathered more specific information about a critical issue on my site.

    The Core Problem:
    My site experiences severe resource usage spikes (jumping from ~10% average to 100%) when the WooCommerce plugin is active. This is accompanied by a flood of “commands out of sync” errors in my debug.log file, which ultimately cripples the site.

    My Troubleshooting Steps:
    To isolate the cause, I have performed extensive testing with the following results:

    1. Deactivated All Plugins Except WooCommerce: The problem still occurs.
    2. Reactivated All Other Plugins: The problem is absent until a certain point, after which it triggers.
    3. Deactivated WooCommerce: The problem completely disappears. The site runs smoothly with all other plugins active.
    4. Changed Theme: I switched from my custom storefront-child theme to the default Storefront theme to rule out custom code. The problem persisted.

    Key Observations & Suspicions:

    • Not Immediate: The issue does not happen immediately upon activating WooCommerce. It appears to be triggered by a specific event or process that runs after some time.
    • Correlation with App Usage: I suspect the issue may be related to a custom mobile application that interacts with my store. This app uses the WooCommerce Store API endpoints for cart management and customer orders.
      • The problem was not present initially but seems to have emerged and intensified as the app gained more users and installs.
      • This suggests the spikes could be related to high concurrent API requests or a specific action performed through the API.

    I tried adding rate limiting but to no success

    <?php
    /**
    * Plugin Name: Abanista Store API
    * Description: Adds upsells, cross-sells, related IDs, featured flag, total_sales, and frequently bought together IDs to the single-product Store API endpoint.
    * Version: 1.2
    * Author:
    */

    // --- Existing endpoint registration (unchanged) ---
    add_action( 'woocommerce_blocks_loaded', function() {

    woocommerce_store_api_register_endpoint_data( array(
    'endpoint' => Automattic\WooCommerce\StoreApi\Schemas\V1\ProductSchema::IDENTIFIER,
    'namespace' => 'additional_product_data',
    'schema_callback' => function() {
    return [
    'upsells' => [ 'type' => 'array', 'items' => [ 'type' => 'integer' ] ],
    'cross_sells' => [ 'type' => 'array', 'items' => [ 'type' => 'integer' ] ],
    'related' => [ 'type' => 'array', 'items' => [ 'type' => 'integer' ] ],
    'featured' => [ 'type' => 'boolean' ],
    'total_sales' => [ 'type' => 'integer' ],
    'bought_together' => [ 'type' => 'array', 'items' => [ 'type' => 'integer' ] ],
    ];
    },
    'data_callback' => function( WC_Product $product ) {
    $bt_ids = get_post_meta( $product->get_id(), '_frequently_bought_together', true );
    if ( ! is_array( $bt_ids ) ) {
    $bt_ids = [];
    }

    return [
    'upsells' => $product->get_upsell_ids(),
    'cross_sells' => $product->get_cross_sell_ids(),
    'related' => wc_get_related_products( $product->get_id() ),
    'featured' => (bool) $product->is_featured(),
    'total_sales' => (int) $product->get_total_sales(),
    'bought_together' => array_map( 'intval', $bt_ids ),
    ];
    },
    'schema_type' => ARRAY_A,
    ) );

    } );

    // --- Rate limiting configuration for Store API ---
    // 1) Enable and tune limits (conservative defaults).
    add_filter( 'woocommerce_store_api_rate_limit_options', function() {
    return [
    // enable or disable store-api rate limiting
    'enabled' => true,

    // if your site sits behind a proxy/load-balancer/CDN, enable to trust X-Forwarded-* headers
    // Set to true only if you have configured your infrastructure appropriately.
    'proxy_support' => true,

    // How many requests are allowed per
    seconds timeframe
    'limit' => 25, // default as per WooCommerce docs; adjust to your traffic profile
    'seconds' => 10, // timeframe in seconds
    ];
    } );

    // 2) Optional: custom fingerprinting for grouping requests.
    // This improves accuracy for rate keying across clients behind NAT/CDNs.
    add_filter( 'woocommerce_store_api_rate_limit_id', function() {
    // Logged-in users are keyed by user ID by default; ensure we return user id when available.
    if ( is_user_logged_in() ) {
    return (string) get_current_user_id();
    }

    // For guests, attempt to derive a stable fingerprint:
    // - prefer X-Forwarded-For first (if proxy_support enabled)
    // - fallback to REMOTE_ADDR
    // - include Accept-Language and user agent to avoid over-grouping different browsers behind same IP
    $ip = '';
    if ( ! empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) {
    // X-Forwarded-For may be a comma-separated list; use the first value.
    $ip_list = explode( ',', wp_unslash( $_SERVER['HTTP_X_FORWARDED_FOR'] ) );
    $ip = trim( sanitize_text_field( $ip_list[0] ) );
    } elseif ( ! empty( $_SERVER['REMOTE_ADDR'] ) ) {
    $ip = sanitize_text_field( wp_unslash( $_SERVER['REMOTE_ADDR'] ) );
    }

    $accept_language = isset( $_SERVER['HTTP_ACCEPT_LANGUAGE'] ) ? sanitize_text_field( wp_unslash( $_SERVER['HTTP_ACCEPT_LANGUAGE'] ) ) : '';
    $ua = wc_get_user_agent();

    // return a hashed fingerprint to keep keys compact
    return md5( $ip . '|' . $accept_language . '|' . $ua );
    } );

    // 3) Observability: log exceeded attempts and allow custom handling.
    add_action( 'woocommerce_store_api_rate_limit_exceeded', function ( $offending_id, $action_id ) {
    // Example: log to PHP error log. Replace with your telemetry (Sentry, monitoring, DB) as required.
    error_log( sprintf( '[Abanista] Store API rate-limit exceeded. Offender: %s; Action: %s; Time: %s',
    maybe_serialize( $offending_id ),
    maybe_serialize( $action_id ),
    current_time( 'mysql' )
    ) );

    // Optional: notify administrators (commented out by default)
    // wp_mail( get_option( 'admin_email' ), 'Store API rate limit exceeded', "Offender: $offending_id\nAction: $action_id" );
    } );

    i was still getting these logs

    [23-Nov-2025 19:34:01 UTC] PHP Notice:  Function wpdb::prepare was called <strong>incorrectly</strong>. The query argument of wpdb::prepare() must have a placeholder. Please see <a href="https://developer.ww.wp.xz.cn/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 3.9.0.) in /home/abanista/public_html/wp-includes/functions.php on line 6121
    [23-Nov-2025 19:38:17 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT * FROM wp_automatewoo_customers WHERE id_key = '1b2w64xceu7tpdw9pw7u' made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, AutomateWoo\Session_Tracker::maybe_set_session_cookies, AutomateWoo\Customer_Factory::get_by_key, AutomateWoo\Model->get_by
    [23-Nov-2025 19:38:17 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT * FROM wp_automatewoo_customers WHERE id_key = '1b2w64xceu7tpdw9pw7u' made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, AutomateWoo\Session_Tracker::maybe_set_session_cookies, AutomateWoo\Customer_Factory::get_by_key, AutomateWoo\Model->get_by
    [23-Nov-2025 19:38:17 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [23-Nov-2025 19:38:17 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [23-Nov-2025 19:38:36 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [23-Nov-2025 19:38:36 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [23-Nov-2025 19:46:18 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 19:46:18 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 19:46:18 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 19:46:18 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 19:46:18 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 19:46:18 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 19:46:18 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 19:46:18 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 19:46:34 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 19:46:34 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 19:46:34 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 19:46:34 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 19:46:34 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 19:46:34 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 19:46:34 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 19:46:34 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 19:50:07 UTC] [thread:377501] [DEBUG] Updating application cache init miss
    [23-Nov-2025 19:56:01 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 19:56:01 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 19:56:01 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 19:56:01 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 19:56:01 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 19:56:01 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 19:56:01 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 19:56:01 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 19:58:21 UTC] abanista_save_push_token payload: {token:[REDACTED], platform:android, app:Abanista}
    [23-Nov-2025 19:58:25 UTC] abanista_save_push_token payload: {token:[REDACTED], platform:android, app:Abanista}
    [23-Nov-2025 20:09:46 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 20:09:46 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 20:09:46 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 20:09:46 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 20:16:35 UTC] abanista_save_push_token payload: {token:[REDACTED], platform:android, app:Abanista}
    [23-Nov-2025 20:16:36 UTC] abanista_save_push_token payload: {token:[REDACTED], platform:android, app:Abanista}
    [23-Nov-2025 20:26:48 UTC] abanista_save_push_token payload: {token:[REDACTED], platform:android, app:Abanista}
    [23-Nov-2025 20:27:13 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 20:27:13 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 20:27:13 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 20:27:13 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 20:27:13 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 20:27:13 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 20:27:13 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 20:27:13 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 20:47:00 UTC] PHP Notice: Function the_widget was called <strong>incorrectly</strong>. Widgets need to be registered using <code>register_widget()</code>, before they can be displayed. Please see <a href="https://developer.ww.wp.xz.cn/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 4.9.0.) in /home/abanista/public_html/wp-includes/functions.php on line 6121
    [23-Nov-2025 20:47:00 UTC] PHP Notice: Function the_widget was called <strong>incorrectly</strong>. Widgets need to be registered using <code>register_widget()</code>, before they can be displayed. Please see <a href="https://developer.ww.wp.xz.cn/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 4.9.0.) in /home/abanista/public_html/wp-includes/functions.php on line 6121
    [23-Nov-2025 20:47:00 UTC] PHP Notice: Function the_widget was called <strong>incorrectly</strong>. Widgets need to be registered using <code>register_widget()</code>, before they can be displayed. Please see <a href="https://developer.ww.wp.xz.cn/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 4.9.0.) in /home/abanista/public_html/wp-includes/functions.php on line 6121
    [23-Nov-2025 20:47:00 UTC] PHP Notice: Function the_widget was called <strong>incorrectly</strong>. Widgets need to be registered using <code>register_widget()</code>, before they can be displayed. Please see <a href="https://developer.ww.wp.xz.cn/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 4.9.0.) in /home/abanista/public_html/wp-includes/functions.php on line 6121
    [23-Nov-2025 20:53:01 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [23-Nov-2025 20:53:01 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO
    wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_cbd469ab0669ef78fc4cef4f048392', 'a:7:{s:22:\"shipping_for_package_0\";s:1825:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_eccc1212611b7d2c89e3118b094b274b\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"10000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:38:\"CHiQ 10kg Washer Dryer Combo &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:38:\"CHiQ 10kg Washer Dryer Combo &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:38:\"CHiQ 10kg Washer Dryer Combo &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:409:\"a:15:{s:8:\"subtotal\";s:7:\"1770000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:5:\"10000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1770000\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1780000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:423:\"a:1:{s:32:\"25bdc6703ebbf72f67257cd959dce1a8\";a:11:{s:3:\"key\";s:32:\"25bdc6703ebbf72f67257cd959dce1a8\";s:10:\"product_id\";i:79364;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1770000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1770000;s:8:\"line_tax\";d:0;}}\";s:13:\"user_district\";s:7:\"Kampala\";}', 1764103980)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [23-Nov-2025 20:59:11 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 20:59:11 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 20:59:11 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 20:59:11 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 21:15:44 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 21:15:44 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 21:15:44 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 21:15:44 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 21:21:36 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 21:21:36 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 21:21:36 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 21:21:36 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 21:21:36 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 21:21:36 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 21:21:36 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 21:21:36 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 21:27:31 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 21:27:31 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 21:27:31 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 21:27:31 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 21:37:27 UTC] Automatic updates starting...
    [23-Nov-2025 21:37:29 UTC] Automatic plugin updates starting...
    [23-Nov-2025 21:37:29 UTC] Automatic plugin updates complete.
    [23-Nov-2025 21:37:29 UTC] Automatic updates complete.
    [23-Nov-2025 21:44:17 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [23-Nov-2025 21:51:32 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 21:51:32 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 21:51:32 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 21:51:32 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 22:02:45 UTC] abanista_save_push_token payload: {token:[REDACTED], platform:android, app:Abanista}
    [23-Nov-2025 22:03:32 UTC] abanista_save_push_token payload: {token:[REDACTED], platform:android, app:Abanista}
    [23-Nov-2025 22:06:09 UTC] abanista_save_push_token payload: {token:[REDACTED], platform:android, app:Abanista}
    [23-Nov-2025 22:08:47 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 22:08:47 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 22:08:47 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 22:08:47 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 22:17:44 UTC] abanista_save_push_token payload: {token:[REDACTED], platform:android, app:Abanista}
    [23-Nov-2025 22:29:22 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 22:29:22 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 22:29:22 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 22:29:22 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 22:46:54 UTC] PHP Notice: Function is_internal_meta_key was called <strong>incorrectly</strong>. Generic add/update/get meta methods should not be used for internal meta data, including "_global_unique_id". Use getters and setters. Backtrace: require('wp-blog-header.php'), require_once('wp-includes/template-loader.php'), include('/themes/storefront/template-fullwidth.php'), get_template_part, locate_template, load_template, require('/themes/storefront/content-page.php'), do_action('storefront_page'), WP_Hook-&gt;do_action, WP_Hook-&gt;apply_filters, storefront_page_content, the_content, apply_filters('the_content'), WP_Hook-&gt;apply_filters, do_shortcode, preg_replace_callback, do_shortcode_tag, WC_Shortcodes::checkout, WC_Shortcodes::shortcode_wrapper, WC_Shortcode_Checkout::output, WC_Shortcode_Checkout::order_received, wc_get_template, include('/plugins/woocommerce/templates/checkout/thankyou.php'), do_action('woocommerce_thankyou'), WP_Hook-&gt;do_action, WP_Hook-&gt;apply_filters, add_google_customer_reviews_optin, WC_Data-&gt;get_meta, WC_Data-&gt;is_internal_meta_key, wc_doing_it_wrong Please see <a href="https://developer.ww.wp.xz.cn/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 3.2.0.) in /home/abanista/public_html/wp-includes/functions.php on line 6121
    [23-Nov-2025 22:46:54 UTC] PHP Notice: Function is_internal_meta_key was called <strong>incorrectly</strong>. Generic add/update/get meta methods should not be used for internal meta data, including "_global_unique_id". Use getters and setters. Backtrace: require('wp-blog-header.php'), require_once('wp-includes/template-loader.php'), include('/themes/storefront/template-fullwidth.php'), get_template_part, locate_template, load_template, require('/themes/storefront/content-page.php'), do_action('storefront_page'), WP_Hook-&gt;do_action, WP_Hook-&gt;apply_filters, storefront_page_content, the_content, apply_filters('the_content'), WP_Hook-&gt;apply_filters, do_shortcode, preg_replace_callback, do_shortcode_tag, WC_Shortcodes::checkout, WC_Shortcodes::shortcode_wrapper, WC_Shortcode_Checkout::output, WC_Shortcode_Checkout::order_received, wc_get_template, include('/plugins/woocommerce/templates/checkout/thankyou.php'), do_action('woocommerce_thankyou'), WP_Hook-&gt;do_action, WP_Hook-&gt;apply_filters, add_google_customer_reviews_optin, WC_Data-&gt;get_meta, WC_Data-&gt;is_internal_meta_key, wc_doing_it_wrong Please see <a href="https://developer.ww.wp.xz.cn/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 3.2.0.) in /home/abanista/public_html/wp-includes/functions.php on line 6121
    [23-Nov-2025 22:46:54 UTC] PHP Notice: Function is_internal_meta_key was called <strong>incorrectly</strong>. Generic add/update/get meta methods should not be used for internal meta data, including "_global_unique_id". Use getters and setters. Backtrace: require('wp-blog-header.php'), require_once('wp-includes/template-loader.php'), include('/themes/storefront/template-fullwidth.php'), get_template_part, locate_template, load_template, require('/themes/storefront/content-page.php'), do_action('storefront_page'), WP_Hook-&gt;do_action, WP_Hook-&gt;apply_filters, storefront_page_content, the_content, apply_filters('the_content'), WP_Hook-&gt;apply_filters, do_shortcode, preg_replace_callback, do_shortcode_tag, WC_Shortcodes::checkout, WC_Shortcodes::shortcode_wrapper, WC_Shortcode_Checkout::output, WC_Shortcode_Checkout::order_received, wc_get_template, include('/plugins/woocommerce/templates/checkout/thankyou.php'), do_action('woocommerce_thankyou'), WP_Hook-&gt;do_action, WP_Hook-&gt;apply_filters, add_google_customer_reviews_optin, WC_Data-&gt;get_meta, WC_Data-&gt;is_internal_meta_key, wc_doing_it_wrong Please see <a href="https://developer.ww.wp.xz.cn/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 3.2.0.) in /home/abanista/public_html/wp-includes/functions.php on line 6121
    [23-Nov-2025 22:47:25 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 22:47:25 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 22:47:25 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 22:47:25 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 22:47:25 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 22:47:25 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 22:47:25 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 22:47:25 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 22:49:07 UTC] abanista_save_push_token payload: {token:[REDACTED], platform:android, app:Abanista}
    [23-Nov-2025 22:56:04 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 22:56:04 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 22:56:04 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 22:56:04 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 22:56:04 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 22:56:04 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 22:56:04 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 22:56:04 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 22:57:59 UTC] PHP Notice: Function is_internal_meta_key was called <strong>incorrectly</strong>. Generic add/update/get meta methods should not be used for internal meta data, including "_global_unique_id". Use getters and setters. Backtrace: require('wp-blog-header.php'), require_once('wp-includes/template-loader.php'), include('/themes/storefront/template-fullwidth.php'), get_template_part, locate_template, load_template, require('/themes/storefront/content-page.php'), do_action('storefront_page'), WP_Hook-&gt;do_action, WP_Hook-&gt;apply_filters, storefront_page_content, the_content, apply_filters('the_content'), WP_Hook-&gt;apply_filters, do_shortcode, preg_replace_callback, do_shortcode_tag, WC_Shortcodes::checkout, WC_Shortcodes::shortcode_wrapper, WC_Shortcode_Checkout::output, WC_Shortcode_Checkout::order_received, wc_get_template, include('/plugins/woocommerce/templates/checkout/thankyou.php'), do_action('woocommerce_thankyou'), WP_Hook-&gt;do_action, WP_Hook-&gt;apply_filters, add_google_customer_reviews_optin, WC_Data-&gt;get_meta, WC_Data-&gt;is_internal_meta_key, wc_doing_it_wrong Please see <a href="https://developer.ww.wp.xz.cn/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 3.2.0.) in /home/abanista/public_html/wp-includes/functions.php on line 6121
    [23-Nov-2025 22:57:59 UTC] PHP Notice: Function is_internal_meta_key was called <strong>incorrectly</strong>. Generic add/update/get meta methods should not be used for internal meta data, including "_global_unique_id". Use getters and setters. Backtrace: require('wp-blog-header.php'), require_once('wp-includes/template-loader.php'), include('/themes/storefront/template-fullwidth.php'), get_template_part, locate_template, load_template, require('/themes/storefront/content-page.php'), do_action('storefront_page'), WP_Hook-&gt;do_action, WP_Hook-&gt;apply_filters, storefront_page_content, the_content, apply_filters('the_content'), WP_Hook-&gt;apply_filters, do_shortcode, preg_replace_callback, do_shortcode_tag, WC_Shortcodes::checkout, WC_Shortcodes::shortcode_wrapper, WC_Shortcode_Checkout::output, WC_Shortcode_Checkout::order_received, wc_get_template, include('/plugins/woocommerce/templates/checkout/thankyou.php'), do_action('woocommerce_thankyou'), WP_Hook-&gt;do_action, WP_Hook-&gt;apply_filters, add_google_customer_reviews_optin, WC_Data-&gt;get_meta, WC_Data-&gt;is_internal_meta_key, wc_doing_it_wrong Please see <a href="https://developer.ww.wp.xz.cn/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 3.2.0.) in /home/abanista/public_html/wp-includes/functions.php on line 6121
    [23-Nov-2025 22:57:59 UTC] PHP Notice: Function is_internal_meta_key was called <strong>incorrectly</strong>. Generic add/update/get meta methods should not be used for internal meta data, including "_global_unique_id". Use getters and setters. Backtrace: require('wp-blog-header.php'), require_once('wp-includes/template-loader.php'), include('/themes/storefront/template-fullwidth.php'), get_template_part, locate_template, load_template, require('/themes/storefront/content-page.php'), do_action('storefront_page'), WP_Hook-&gt;do_action, WP_Hook-&gt;apply_filters, storefront_page_content, the_content, apply_filters('the_content'), WP_Hook-&gt;apply_filters, do_shortcode, preg_replace_callback, do_shortcode_tag, WC_Shortcodes::checkout, WC_Shortcodes::shortcode_wrapper, WC_Shortcode_Checkout::output, WC_Shortcode_Checkout::order_received, wc_get_template, include('/plugins/woocommerce/templates/checkout/thankyou.php'), do_action('woocommerce_thankyou'), WP_Hook-&gt;do_action, WP_Hook-&gt;apply_filters, add_google_customer_reviews_optin, WC_Data-&gt;get_meta, WC_Data-&gt;is_internal_meta_key, wc_doing_it_wrong Please see <a href="https://developer.ww.wp.xz.cn/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 3.2.0.) in /home/abanista/public_html/wp-includes/functions.php on line 6121
    [23-Nov-2025 22:59:23 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 22:59:23 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 22:59:23 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 22:59:23 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 23:05:14 UTC] PHP Fatal error: Uncaught ArgumentCountError: Too few arguments to function {closure:/home/abanista/public_html/wp-content/plugins/abanista-store-api/abanista-store-api.php:91}(), 1 passed in /home/abanista/public_html/wp-includes/class-wp-hook.php on line 326 and exactly 2 expected in /home/abanista/public_html/wp-content/plugins/abanista-store-api/abanista-store-api.php:91
    Stack trace:
    #0 /home/abanista/public_html/wp-includes/class-wp-hook.php(326): {closure:/home/abanista/public_html/wp-content/plugins/abanista-store-api/abanista-store-api.php:91}()
    #1 /home/abanista/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
    #2 /home/abanista/public_html/wp-includes/plugin.php(517): WP_Hook->do_action()
    #3 /home/abanista/public_html/wp-content/plugins/woocommerce/src/StoreApi/Authentication.php(205): do_action()
    #4 /home/abanista/public_html/wp-content/plugins/woocommerce/src/StoreApi/Authentication.php(127): Automattic\WooCommerce\StoreApi\Authentication->apply_rate_limiting()
    #5 /home/abanista/public_html/wp-includes/class-wp-hook.php(324): Automattic\WooCommerce\StoreApi\Authentication->check_authentication()
    #6 /home/abanista/public_html/wp-includes/plugin.php(205): WP_Hook->apply_filters()
    #7 /home/abanista/public_html/wp-includes/rest-api/class-wp-rest-server.php(197): apply_filters()
    #8 /home/abanista/public_html/wp-includes/rest-api/class-wp-rest-server.php(436): WP_REST_Server->check_authentication()
    #9 /home/abanista/public_html/wp-includes/rest-api.php(459): WP_REST_Server->serve_request()
    #10 /home/abanista/public_html/wp-includes/class-wp-hook.php(324): rest_api_loaded()
    #11 /home/abanista/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
    #12 /home/abanista/public_html/wp-includes/plugin.php(565): WP_Hook->do_action()
    #13 /home/abanista/public_html/wp-includes/class-wp.php(418): do_action_ref_array()
    #14 /home/abanista/public_html/wp-includes/class-wp.php(818): WP->parse_request()
    #15 /home/abanista/public_html/wp-includes/functions.php(1342): WP->main()
    #16 /home/abanista/public_html/wp-blog-header.php(16): wp()
    #17 /home/abanista/public_html/index.php(17): require('/home/abanista/...')
    #18 {main}
    thrown in /home/abanista/public_html/wp-content/plugins/abanista-store-api/abanista-store-api.php on line 91
    [23-Nov-2025 23:05:14 UTC] PHP Fatal error: Uncaught ArgumentCountError: Too few arguments to function {closure:/home/abanista/public_html/wp-content/plugins/abanista-store-api/abanista-store-api.php:91}(), 1 passed in /home/abanista/public_html/wp-includes/class-wp-hook.php on line 326 and exactly 2 expected in /home/abanista/public_html/wp-content/plugins/abanista-store-api/abanista-store-api.php:91
    Stack trace:
    #0 /home/abanista/public_html/wp-includes/class-wp-hook.php(326): {closure:/home/abanista/public_html/wp-content/plugins/abanista-store-api/abanista-store-api.php:91}()
    #1 /home/abanista/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
    #2 /home/abanista/public_html/wp-includes/plugin.php(517): WP_Hook->do_action()
    #3 /home/abanista/public_html/wp-content/plugins/woocommerce/src/StoreApi/Authentication.php(205): do_action()
    #4 /home/abanista/public_html/wp-content/plugins/woocommerce/src/StoreApi/Authentication.php(127): Automattic\WooCommerce\StoreApi\Authentication->apply_rate_limiting()
    #5 /home/abanista/public_html/wp-includes/class-wp-hook.php(324): Automattic\WooCommerce\StoreApi\Authentication->check_authentication()
    #6 /home/abanista/public_html/wp-includes/plugin.php(205): WP_Hook->apply_filters()
    #7 /home/abanista/public_html/wp-includes/rest-api/class-wp-rest-server.php(197): apply_filters()
    #8 /home/abanista/public_html/wp-includes/rest-api/class-wp-rest-server.php(436): WP_REST_Server->check_authentication()
    #9 /home/abanista/public_html/wp-includes/rest-api.php(459): WP_REST_Server->serve_request()
    #10 /home/abanista/public_html/wp-includes/class-wp-hook.php(324): rest_api_loaded()
    #11 /home/abanista/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
    #12 /home/abanista/public_html/wp-includes/plugin.php(565): WP_Hook->do_action()
    #13 /home/abanista/public_html/wp-includes/class-wp.php(418): do_action_ref_array()
    #14 /home/abanista/public_html/wp-includes/class-wp.php(818): WP->parse_request()
    #15 /home/abanista/public_html/wp-includes/functions.php(1342): WP->main()
    #16 /home/abanista/public_html/wp-blog-header.php(16): wp()
    #17 /home/abanista/public_html/index.php(17): require('/home/abanista/...')
    #18 {main}
    thrown in /home/abanista/public_html/wp-content/plugins/abanista-store-api/abanista-store-api.php on line 91
    [23-Nov-2025 23:05:14 UTC] PHP Fatal error: Uncaught ArgumentCountError: Too few arguments to function {closure:/home/abanista/public_html/wp-content/plugins/abanista-store-api/abanista-store-api.php:91}(), 1 passed in /home/abanista/public_html/wp-includes/class-wp-hook.php on line 326 and exactly 2 expected in /home/abanista/public_html/wp-content/plugins/abanista-store-api/abanista-store-api.php:91
    Stack trace:
    #0 /home/abanista/public_html/wp-includes/class-wp-hook.php(326): {closure:/home/abanista/public_html/wp-content/plugins/abanista-store-api/abanista-store-api.php:91}()
    #1 /home/abanista/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
    #2 /home/abanista/public_html/wp-includes/plugin.php(517): WP_Hook->do_action()
    #3 /home/abanista/public_html/wp-content/plugins/woocommerce/src/StoreApi/Authentication.php(205): do_action()
    #4 /home/abanista/public_html/wp-content/plugins/woocommerce/src/StoreApi/Authentication.php(127): Automattic\WooCommerce\StoreApi\Authentication->apply_rate_limiting()
    #5 /home/abanista/public_html/wp-includes/class-wp-hook.php(324): Automattic\WooCommerce\StoreApi\Authentication->check_authentication()
    #6 /home/abanista/public_html/wp-includes/plugin.php(205): WP_Hook->apply_filters()
    #7 /home/abanista/public_html/wp-includes/rest-api/class-wp-rest-server.php(197): apply_filters()
    #8 /home/abanista/public_html/wp-includes/rest-api/class-wp-rest-server.php(436): WP_REST_Server->check_authentication()
    #9 /home/abanista/public_html/wp-includes/rest-api.php(459): WP_REST_Server->serve_request()
    #10 /home/abanista/public_html/wp-includes/class-wp-hook.php(324): rest_api_loaded()
    #11 /home/abanista/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
    #12 /home/abanista/public_html/wp-includes/plugin.php(565): WP_Hook->do_action()
    #13 /home/abanista/public_html/wp-includes/class-wp.php(418): do_action_ref_array()
    #14 /home/abanista/public_html/wp-includes/class-wp.php(818): WP->parse_request()
    #15 /home/abanista/public_html/wp-includes/functions.php(1342): WP->main()
    #16 /home/abanista/public_html/wp-blog-header.php(16): wp()
    #17 /home/abanista/public_html/index.php(17): require('/home/abanista/...')
    #18 {main}
    thrown in /home/abanista/public_html/wp-content/plugins/abanista-store-api/abanista-store-api.php on line 91
    [23-Nov-2025 23:12:21 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 23:12:21 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 23:12:21 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 23:12:21 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 23:12:26 UTC] PHP Fatal error: Uncaught ArgumentCountError: is_numeric() expects exactly 1 argument, 3 given in /home/abanista/public_html/wp-includes/rest-api/class-wp-rest-request.php:930
    Stack trace:
    #0 /home/abanista/public_html/wp-includes/rest-api/class-wp-rest-request.php(930): is_numeric()
    #1 /home/abanista/public_html/wp-includes/rest-api/class-wp-rest-server.php(1114): WP_REST_Request->has_valid_params()
    #2 /home/abanista/public_html/wp-includes/rest-api/class-wp-rest-server.php(439): WP_REST_Server->dispatch()
    #3 /home/abanista/public_html/wp-includes/rest-api.php(459): WP_REST_Server->serve_request()
    #4 /home/abanista/public_html/wp-includes/class-wp-hook.php(324): rest_api_loaded()
    #5 /home/abanista/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
    #6 /home/abanista/public_html/wp-includes/plugin.php(565): WP_Hook->do_action()
    #7 /home/abanista/public_html/wp-includes/class-wp.php(418): do_action_ref_array()
    #8 /home/abanista/public_html/wp-includes/class-wp.php(818): WP->parse_request()
    #9 /home/abanista/public_html/wp-includes/functions.php(1342): WP->main()
    #10 /home/abanista/public_html/wp-blog-header.php(16): wp()
    #11 /home/abanista/public_html/index.php(17): require('/home/abanista/...')
    #12 {main}
    thrown in /home/abanista/public_html/wp-includes/rest-api/class-wp-rest-request.php on line 930
    [23-Nov-2025 23:12:40 UTC] PHP Fatal error: Uncaught ArgumentCountError: is_numeric() expects exactly 1 argument, 3 given in /home/abanista/public_html/wp-includes/rest-api/class-wp-rest-request.php:930
    Stack trace:
    #0 /home/abanista/public_html/wp-includes/rest-api/class-wp-rest-request.php(930): is_numeric()
    #1 /home/abanista/public_html/wp-includes/rest-api/class-wp-rest-server.php(1114): WP_REST_Request->has_valid_params()
    #2 /home/abanista/public_html/wp-includes/rest-api/class-wp-rest-server.php(439): WP_REST_Server->dispatch()
    #3 /home/abanista/public_html/wp-includes/rest-api.php(459): WP_REST_Server->serve_request()
    #4 /home/abanista/public_html/wp-includes/class-wp-hook.php(324): rest_api_loaded()
    #5 /home/abanista/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
    #6 /home/abanista/public_html/wp-includes/plugin.php(565): WP_Hook->do_action()
    #7 /home/abanista/public_html/wp-includes/class-wp.php(418): do_action_ref_array()
    #8 /home/abanista/public_html/wp-includes/class-wp.php(818): WP->parse_request()
    #9 /home/abanista/public_html/wp-includes/functions.php(1342): WP->main()
    #10 /home/abanista/public_html/wp-blog-header.php(16): wp()
    #11 /home/abanista/public_html/index.php(17): require('/home/abanista/...')
    #12 {main}
    thrown in /home/abanista/public_html/wp-includes/rest-api/class-wp-rest-request.php on line 930
    [23-Nov-2025 23:15:37 UTC] abanista_save_push_token payload: {token:[REDACTED], platform:android, app:Abanista}
    [23-Nov-2025 23:30:04 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 23:30:04 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 23:30:04 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 23:30:04 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 23:30:04 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 23:30:04 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 23:30:04 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 23:30:04 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 23:39:24 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 23:39:24 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 23:39:24 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 23:39:24 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 23:39:24 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 23:39:24 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 23:39:24 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [23-Nov-2025 23:39:24 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 00:02:37 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:02:37 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_3086b3b6c9d9c072d77d5934c88948', 'a:7:{s:22:\"shipping_for_package_0\";s:2328:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_1778008840f6f18ecddf1b649f5ef29d\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:197:\"Geepas GSVB4112 Vacuum Flask, Stainless Steel Vacuum Bottle 1.8L Keep Hot &amp; Cold Antibacterial topper &amp; Cup - Perfect for Outdoor Sports, Fitness, Camping, Hiking, Office, School. &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:197:\"Geepas GSVB4112 Vacuum Flask, Stainless Steel Vacuum Bottle 1.8L Keep Hot &amp; Cold Antibacterial topper &amp; Cup - Perfect for Outdoor Sports, Fitness, Camping, Hiking, Office, School. &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:197:\"Geepas GSVB4112 Vacuum Flask, Stainless Steel Vacuum Bottle 1.8L Keep Hot &amp; Cold Antibacterial topper &amp; Cup - Perfect for Outdoor Sports, Fitness, Camping, Hiking, Office, School. &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:421:\"a:15:{s:8:\"subtotal\";s:6:\"140000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"5000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:1:{i:1;d:0;}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"140000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"145000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:437:\"a:1:{s:32:\"c680a9953caa17631c79b966c3139467\";a:11:{s:3:\"key\";s:32:\"c680a9953caa17631c79b966c3139467\";s:10:\"product_id\";i:77455;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:140000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:140000;s:8:\"line_tax\";d:0;}}\";s:13:\"user_district\";s:7:\"Kampala\";}', 1764115356)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:02:47 UTC] abanista_save_push_token payload: {token:[REDACTED], platform:android, app:Abanista}
    [24-Nov-2025 00:06:21 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 00:06:21 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 00:06:21 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 00:06:21 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 00:06:21 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 00:06:21 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 00:06:21 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 00:06:21 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 00:08:26 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:08:27 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:08:27 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_cd02361c98e86abcb7ffea3074a408', 'a:7:{s:22:\"shipping_for_package_0\";s:2338:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_1389021225a16f9bd24b2992f92c491a\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"10000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:208:\"TCL 7KG Front Loading Washing Machine, P607FLG, Digital Inverter Motor, Add Garment, Drum Clean, Safety Lock, Sound off function, 24 hour delay, Memory Backup, Heat Sterilization, TCL Honeycumb drum &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:208:\"TCL 7KG Front Loading Washing Machine, P607FLG, Digital Inverter Motor, Add Garment, Drum Clean, Safety Lock, Sound off function, 24 hour delay, Memory Backup, Heat Sterilization, TCL Honeycumb drum &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:208:\"TCL 7KG Front Loading Washing Machine, P607FLG, Digital Inverter Motor, Add Garment, Drum Clean, Safety Lock, Sound off function, 24 hour delay, Memory Backup, Heat Sterilization, TCL Honeycumb drum &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:409:\"a:15:{s:8:\"subtotal\";s:7:\"1070000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:5:\"10000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1070000\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1080000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:423:\"a:1:{s:32:\"36be5aa426e24c1f0c48baa196569fdd\";a:11:{s:3:\"key\";s:32:\"36be5aa426e24c1f0c48baa196569fdd\";s:10:\"product_id\";i:77733;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1070000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1070000;s:8:\"line_tax\";d:0;}}\";s:13:\"user_district\";s:7:\"Kampala\";}', 1764115705)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:08:57 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:08:57 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:09:09 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:09:58 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:09:58 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_ec88d10815e4955c23866d7ea1ad38', 'a:7:{s:22:\"shipping_for_package_0\";s:2314:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_634d971e29d454dc6d0d6539d19c4b6c\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:53:\"Decakila 8 Litre Air Fryer, 1800w, KEEC040B &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:53:\"Decakila 8 Litre Air Fryer, 1800w, KEEC040B &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:53:\"Decakila 8 Litre Air Fryer, 1800w, KEEC040B &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:53:\"Decakila 8 Litre Air Fryer, 1800w, KEEC040B &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:410:\"a:15:{s:8:\"subtotal\";s:6:\"390000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"390000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"390000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:437:\"a:1:{s:32:\"6ff7076002cca9e4493c741aa871da96\";a:11:{s:3:\"key\";s:32:\"6ff7076002cca9e4493c741aa871da96\";s:10:\"product_id\";i:59497;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:390000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:390000;s:8:\"line_tax\";d:0;}}\";s:13:\"user_district\";s:7:\"Kampala\";}', 1764115796)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:10:32 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:10:32 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:10:36 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:10:36 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_61b131bc7444425c2264bd3cd77a1d', 'a:7:{s:22:\"shipping_for_package_0\";s:1909:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_58af8647ecb6a073a99f4b8212bb553d\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"20000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:58:\"Samsung 40-Inch Full HD Smart LED TV | UA40T5300 &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:58:\"Samsung 40-Inch Full HD Smart LED TV | UA40T5300 &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:58:\"Samsung 40-Inch Full HD Smart LED TV | UA40T5300 &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:425:\"a:15:{s:8:\"subtotal\";s:7:\"1420000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:5:\"20000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:1:{i:1;d:0;}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1420000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1440000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"ddc751074ed4db1ce8e65aec173d16e3\";a:11:{s:3:\"key\";s:32:\"ddc751074ed4db1ce8e65aec173d16e3\";s:10:\"product_id\";i:17471;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1420000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1420000;s:8:\"line_tax\";d:0;}}\";s:13:\"user_district\";s:7:\"Kampala\";}', 1764115835)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:10:38 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:10:38 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_4c913cbf807bb739011094d2173a7f', 'a:7:{s:22:\"shipping_for_package_0\";s:1930:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_a451c5cc07c1c1889c50b5744bfbd466\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"10000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:65:\"Samsung 12kg Twin Washer with Air Turbo, WT12J4200MR/NQ &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:65:\"Samsung 12kg Twin Washer with Air Turbo, WT12J4200MR/NQ &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:65:\"Samsung 12kg Twin Washer with Air Turbo, WT12J4200MR/NQ &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:425:\"a:15:{s:8:\"subtotal\";s:7:\"1290000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:5:\"10000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:1:{i:1;d:0;}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1290000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1300000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"3e6cddb9963945c4428c12d650ad45e2\";a:11:{s:3:\"key\";s:32:\"3e6cddb9963945c4428c12d650ad45e2\";s:10:\"product_id\";i:75440;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1290000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1290000;s:8:\"line_tax\";d:0;}}\";s:13:\"user_district\";s:7:\"Kampala\";}', 1764115837)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:11:08 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:11:08 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_4344cf17a60734d735af6c3ceed094', 'a:7:{s:22:\"shipping_for_package_0\";s:1915:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_f8e0ee36962045599d51a982fc9173ff\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"20000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:60:\"LG 43-inch FHD Smart LED TV w/ Free-To-Air Decoder &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:60:\"LG 43-inch FHD Smart LED TV w/ Free-To-Air Decoder &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:60:\"LG 43-inch FHD Smart LED TV w/ Free-To-Air Decoder &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:425:\"a:15:{s:8:\"subtotal\";s:7:\"1390000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:5:\"20000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:1:{i:1;d:0;}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1390000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1410000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"a2a6a5c6ea38cac0864685dffaea8e92\";a:11:{s:3:\"key\";s:32:\"a2a6a5c6ea38cac0864685dffaea8e92\";s:10:\"product_id\";i:17375;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1390000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1390000;s:8:\"line_tax\";d:0;}}\";s:10:\"wc_notices\";s:249:\"a:1:{s:7:\"success\";a:1:{i:0;a:2:{s:6:\"notice\";s:174:\"&ldquo;LG 43-inch FHD Smart LED TV w/ Free-To-Air Decoder&rdquo; has been added to your cart. <a href=\"https://www.abanista.com/cart/\" class=\"button wc-forward\">View cart</a>\";s:4:\"data\";a:0:{}}}}\";}', 1764115867)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:11:08 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:11:08 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_642d9e3b44f6b54d20118328c5d4b8', 'a:7:{s:22:\"shipping_for_package_0\";s:2535:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_d658c78cdf7fa95572a5f31ad59aff1b\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:107:\"Electrolux 528 Litre Side by Side Fridge with Water Dispenser, Inverter Technology (ESE5441A-AME) &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"30000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:107:\"Electrolux 528 Litre Side by Side Fridge with Water Dispenser, Inverter Technology (ESE5441A-AME) &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:107:\"Electrolux 528 Litre Side by Side Fridge with Water Dispenser, Inverter Technology (ESE5441A-AME) &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:107:\"Electrolux 528 Litre Side by Side Fridge with Water Dispenser, Inverter Technology (ESE5441A-AME) &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:413:\"a:15:{s:8:\"subtotal\";s:7:\"4750000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"4750000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"4750000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:438:\"a:1:{s:32:\"55c567fd4395ecef6d936cf77b8d5b2b\";a:11:{s:3:\"key\";s:32:\"55c567fd4395ecef6d936cf77b8d5b2b\";s:10:\"product_id\";i:1497;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4750000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4750000;s:8:\"line_tax\";d:0;}}\";s:10:\"wc_notices\";s:296:\"a:1:{s:7:\"success\";a:1:{i:0;a:2:{s:6:\"notice\";s:221:\"&ldquo;Electrolux 528 Litre Side by Side Fridge with Water Dispenser, Inverter Technology (ESE5441A-AME)&rdquo; has been added to your cart. <a href=\"https://www.abanista.com/cart/\" class=\"button wc-forward\">View cart</a>\";s:4:\"data\";a:0:{}}}}\";}', 1764115868)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:11:17 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:11:17 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:11:17 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:11:17 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:11:17 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:11:17 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:11:18 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:11:18 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:11:18 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:11:18 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:11:19 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:11:19 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:11:20 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:11:20 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_6bd2380a55f57cabe07ac7222bb065', 'a:7:{s:22:\"shipping_for_package_0\";s:1911:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_6468da951e52aa5b24254bfbd89d725a\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:59:\"Panasonic Steam Iron, 1800w, (NI-M300TATH) - Blue &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:59:\"Panasonic Steam Iron, 1800w, (NI-M300TATH) - Blue &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:59:\"Panasonic Steam Iron, 1800w, (NI-M300TATH) - Blue &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:421:\"a:15:{s:8:\"subtotal\";s:6:\"155000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"5000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:1:{i:1;d:0;}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"155000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"160000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:437:\"a:1:{s:32:\"13e0c58160370f4f3c24dd99c9cf6098\";a:11:{s:3:\"key\";s:32:\"13e0c58160370f4f3c24dd99c9cf6098\";s:10:\"product_id\";i:79223;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:155000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:155000;s:8:\"line_tax\";d:0;}}\";s:10:\"wc_notices\";s:254:\"a:1:{s:7:\"success\";a:1:{i:0;a:2:{s:6:\"notice\";s:179:\"&ldquo;Panasonic Steam Iron, 1800w, (NI-M300TATH) &#8211; Blue&rdquo; has been added to your cart. <a href=\"https://www.abanista.com/cart/\" class=\"button wc-forward\">View cart</a>\";s:4:\"data\";a:0:{}}}}\";}', 1764115879)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:11:21 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:11:21 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_766f59bd3bee9c5f375f27d1fe0338', 'a:7:{s:22:\"shipping_for_package_0\";s:2378:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_7ae37e5e429646782df429233c41dd62\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:69:\"Decakila 220-240V, 1500 Watts, Portable Hot Plate, KECC009M &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:69:\"Decakila 220-240V, 1500 Watts, Portable Hot Plate, KECC009M &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:69:\"Decakila 220-240V, 1500 Watts, Portable Hot Plate, KECC009M &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:69:\"Decakila 220-240V, 1500 Watts, Portable Hot Plate, KECC009M &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:407:\"a:15:{s:8:\"subtotal\";s:5:\"95000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:5:\"95000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:5:\"95000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:435:\"a:1:{s:32:\"26e0639dcc946d94c1cd6b35e610af55\";a:11:{s:3:\"key\";s:32:\"26e0639dcc946d94c1cd6b35e610af55\";s:10:\"product_id\";i:61650;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:95000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:95000;s:8:\"line_tax\";d:0;}}\";s:10:\"wc_notices\";s:258:\"a:1:{s:7:\"success\";a:1:{i:0;a:2:{s:6:\"notice\";s:183:\"&ldquo;Decakila 220-240V, 1500 Watts, Portable Hot Plate, KECC009M&rdquo; has been added to your cart. <a href=\"https://www.abanista.com/cart/\" class=\"button wc-forward\">View cart</a>\";s:4:\"data\";a:0:{}}}}\";}', 1764115880)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:11:30 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:12:26 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:12:26 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:12:48 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:12:48 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:13:50 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:13:50 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:14:03 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:14:03 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:14:03 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:14:03 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:14:07 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:14:07 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:14:07 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:14:07 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:14:19 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:14:19 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:14:33 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:14:33 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:14:59 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:14:59 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:14:59 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_aece0898404506b14ccfbcc513ec00', 'a:6:{s:22:\"shipping_for_package_0\";s:1983:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_47ad69534fd3c795119a25cac4213ae3\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:83:\"Kenwood Steam Iron, 1100 Watt, 130ML, Non Stick Plate, Blue | STP01.000WB &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:83:\"Kenwood Steam Iron, 1100 Watt, 130ML, Non Stick Plate, Blue | STP01.000WB &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:83:\"Kenwood Steam Iron, 1100 Watt, 130ML, Non Stick Plate, Blue | STP01.000WB &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:421:\"a:15:{s:8:\"subtotal\";s:6:\"115000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"5000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:1:{i:1;d:0;}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"115000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"120000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:437:\"a:1:{s:32:\"c1481a88d8e582ce58f9413d5ac93360\";a:11:{s:3:\"key\";s:32:\"c1481a88d8e582ce58f9413d5ac93360\";s:10:\"product_id\";i:28005;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:115000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:115000;s:8:\"line_tax\";d:0;}}\";}', 1764116099)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:15:01 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:15:16 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:15:16 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_aa0cc1e6f215b98cda5da14e607ca6', 'a:7:{s:22:\"shipping_for_package_0\";s:1915:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_f8e0ee36962045599d51a982fc9173ff\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"20000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:60:\"LG 43-inch FHD Smart LED TV w/ Free-To-Air Decoder &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:60:\"LG 43-inch FHD Smart LED TV w/ Free-To-Air Decoder &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:60:\"LG 43-inch FHD Smart LED TV w/ Free-To-Air Decoder &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:425:\"a:15:{s:8:\"subtotal\";s:7:\"1390000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:5:\"20000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:1:{i:1;d:0;}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1390000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1410000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"a2a6a5c6ea38cac0864685dffaea8e92\";a:11:{s:3:\"key\";s:32:\"a2a6a5c6ea38cac0864685dffaea8e92\";s:10:\"product_id\";i:17375;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1390000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1390000;s:8:\"line_tax\";d:0;}}\";s:10:\"wc_notices\";s:249:\"a:1:{s:7:\"success\";a:1:{i:0;a:2:{s:6:\"notice\";s:174:\"&ldquo;LG 43-inch FHD Smart LED TV w/ Free-To-Air Decoder&rdquo; has been added to your cart. <a href=\"https://www.abanista.com/cart/\" class=\"button wc-forward\">View cart</a>\";s:4:\"data\";a:0:{}}}}\";}', 1764116115)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:15:32 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:15:32 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:15:50 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:15:50 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:16:05 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:16:05 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_872ff53fb509b5e663ce56ef66ba13', 'a:3:{s:11:\"cart_totals\";s:410:\"a:15:{s:8:\"subtotal\";s:6:\"190000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"190000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"190000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:437:\"a:1:{s:32:\"85988ee36f770a407d01f737b42cbc9e\";a:11:{s:3:\"key\";s:32:\"85988ee36f770a407d01f737b42cbc9e\";s:10:\"product_id\";i:77429;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:190000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:190000;s:8:\"line_tax\";d:0;}}\";s:13:\"user_district\";s:7:\"Kampala\";}', 1764116164)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:16:11 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:16:11 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_6759494a3dc24dff1ffbae61fc44d2', 'a:7:{s:22:\"shipping_for_package_0\";s:2104:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_4b3e461c6792ffa3f75e8a83f8715db5\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"30000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:130:\"Hisense 341 Litre (Net 262L: Fridge 196L + Freezer 66L) Bottom Freezer Fridge w/ Water Dispenser, A+, Silver, RB341D4WGU &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:130:\"Hisense 341 Litre (Net 262L: Fridge 196L + Freezer 66L) Bottom Freezer Fridge w/ Water Dispenser, A+, Silver, RB341D4WGU &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:130:\"Hisense 341 Litre (Net 262L: Fridge 196L + Freezer 66L) Bottom Freezer Fridge w/ Water Dispenser, A+, Silver, RB341D4WGU &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:409:\"a:15:{s:8:\"subtotal\";s:7:\"1400000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:5:\"30000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1400000\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1430000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:423:\"a:1:{s:32:\"e27455a76961ba5843915685a2a1f90d\";a:11:{s:3:\"key\";s:32:\"e27455a76961ba5843915685a2a1f90d\";s:10:\"product_id\";i:17236;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1400000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1400000;s:8:\"line_tax\";d:0;}}\";s:13:\"user_district\";s:7:\"Kampala\";}', 1764116170)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:16:17 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:16:17 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:16:17 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_ad76d2e51c4e7b8ef1ca1230e4451d', 'a:7:{s:22:\"shipping_for_package_0\";s:2422:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_543504d9d58ee9f09fa56f5647de9f36\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:80:\"Moulinex Juice Express 800 Watts Centrifugal Juicer, 2 Liter, JU550D27 &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:80:\"Moulinex Juice Express 800 Watts Centrifugal Juicer, 2 Liter, JU550D27 &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:80:\"Moulinex Juice Express 800 Watts Centrifugal Juicer, 2 Liter, JU550D27 &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:80:\"Moulinex Juice Express 800 Watts Centrifugal Juicer, 2 Liter, JU550D27 &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:410:\"a:15:{s:8:\"subtotal\";s:6:\"395000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"395000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"395000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:437:\"a:1:{s:32:\"38dfefa8f301cfcef2e90cd705df5bf5\";a:11:{s:3:\"key\";s:32:\"38dfefa8f301cfcef2e90cd705df5bf5\";s:10:\"product_id\";i:33143;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:395000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:395000;s:8:\"line_tax\";d:0;}}\";s:13:\"user_district\";s:7:\"Kampala\";}', 1764116176)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:16:18 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:16:18 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_3c2935276fb2f2d8f514e993e97195', 'a:7:{s:22:\"shipping_for_package_0\";s:2423:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_05e80281bf4dd6bca3f86615bc2a45d9\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:80:\"Samsung 98-inch Class DU9000 Crystal UHD 4K Smart TV, UA98DU9000, 2024 &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"20000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:80:\"Samsung 98-inch Class DU9000 Crystal UHD 4K Smart TV, UA98DU9000, 2024 &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:80:\"Samsung 98-inch Class DU9000 Crystal UHD 4K Smart TV, UA98DU9000, 2024 &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:80:\"Samsung 98-inch Class DU9000 Crystal UHD 4K Smart TV, UA98DU9000, 2024 &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:416:\"a:15:{s:8:\"subtotal\";s:8:\"23500000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:8:\"23500000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:8:\"23500000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:441:\"a:1:{s:32:\"80c3759420eee7aad4f3b6e9f1d9779b\";a:11:{s:3:\"key\";s:32:\"80c3759420eee7aad4f3b6e9f1d9779b\";s:10:\"product_id\";i:17459;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:23500000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:23500000;s:8:\"line_tax\";d:0;}}\";s:10:\"wc_notices\";s:269:\"a:1:{s:7:\"success\";a:1:{i:0;a:2:{s:6:\"notice\";s:194:\"&ldquo;Samsung 98-inch Class DU9000 Crystal UHD 4K Smart TV, UA98DU9000, 2024&rdquo; has been added to your cart. <a href=\"https://www.abanista.com/cart/\" class=\"button wc-forward\">View cart</a>\";s:4:\"data\";a:0:{}}}}\";}', 1764116177)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:16:26 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:16:26 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_1bfe2e42d5ecd2a174c6b268b06071', 'a:7:{s:22:\"shipping_for_package_0\";s:2263:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_6344bf79b883c00c769d19587be40ee0\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"10000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:183:\"Hisense 10KG/6KG Washer Washer Dryer, 10 kg Washing and 6 kg Drying, 15+ Programs, 1400RPM, Steam Program, Allergy Care, Drum Clean, Touchscreen, Pause and Add, WDQY1014EVJM &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:183:\"Hisense 10KG/6KG Washer Washer Dryer, 10 kg Washing and 6 kg Drying, 15+ Programs, 1400RPM, Steam Program, Allergy Care, Drum Clean, Touchscreen, Pause and Add, WDQY1014EVJM &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:183:\"Hisense 10KG/6KG Washer Washer Dryer, 10 kg Washing and 6 kg Drying, 15+ Programs, 1400RPM, Steam Program, Allergy Care, Drum Clean, Touchscreen, Pause and Add, WDQY1014EVJM &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:409:\"a:15:{s:8:\"subtotal\";s:7:\"1950000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:5:\"10000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1950000\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1960000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:423:\"a:1:{s:32:\"52caf49d3a53658625de8aacf05fc695\";a:11:{s:3:\"key\";s:32:\"52caf49d3a53658625de8aacf05fc695\";s:10:\"product_id\";i:19379;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1950000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1950000;s:8:\"line_tax\";d:0;}}\";s:13:\"user_district\";s:7:\"Kampala\";}', 1764116185)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:16:37 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:16:37 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:16:38 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:16:38 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_099eed1826a0b47ada5d3e318caac0', 'a:7:{s:22:\"shipping_for_package_0\";s:2298:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_ac03280889b067aeda8f80b3cc907d89\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:49:\"Phillips stainless steel kettle, HD9350 &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:49:\"Phillips stainless steel kettle, HD9350 &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:49:\"Phillips stainless steel kettle, HD9350 &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:49:\"Phillips stainless steel kettle, HD9350 &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:410:\"a:15:{s:8:\"subtotal\";s:6:\"200000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"200000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"200000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:437:\"a:1:{s:32:\"e930c0e340a0ba993987b0238086413c\";a:11:{s:3:\"key\";s:32:\"e930c0e340a0ba993987b0238086413c\";s:10:\"product_id\";i:74273;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:200000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:200000;s:8:\"line_tax\";d:0;}}\";s:13:\"user_district\";s:7:\"Kampala\";}', 1764116196)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:16:42 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:16:51 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:16:51 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:16:51 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:16:51 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:17:02 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:17:02 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_b15faf90d61b6efac49f90e45449ba', 'a:7:{s:22:\"shipping_for_package_0\";s:1858:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_98523803535afe57bf52481b3167a3fa\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"25000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:49:\"ADH 360 Litres Showcase Display Freezer &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:49:\"ADH 360 Litres Showcase Display Freezer &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:49:\"ADH 360 Litres Showcase Display Freezer &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:409:\"a:15:{s:8:\"subtotal\";s:7:\"1690000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:5:\"25000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1690000\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1715000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:423:\"a:1:{s:32:\"6c787089533d4986bbe37d480b92ed5e\";a:11:{s:3:\"key\";s:32:\"6c787089533d4986bbe37d480b92ed5e\";s:10:\"product_id\";i:62661;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1690000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1690000;s:8:\"line_tax\";d:0;}}\";s:13:\"user_district\";s:7:\"Kampala\";}', 1764116221)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:17:24 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:17:24 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_03c5fb37eea053da3d59e4129be5d5', 'a:7:{s:22:\"shipping_for_package_0\";s:2410:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_cc69607d3bc9fb881c8ca26cf9a68b8a\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:77:\"Ariston 9kg Heat Pump Tumble Dryer, Freestanding, NTM119X1SK, White &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:77:\"Ariston 9kg Heat Pump Tumble Dryer, Freestanding, NTM119X1SK, White &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:77:\"Ariston 9kg Heat Pump Tumble Dryer, Freestanding, NTM119X1SK, White &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:77:\"Ariston 9kg Heat Pump Tumble Dryer, Freestanding, NTM119X1SK, White &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:413:\"a:15:{s:8:\"subtotal\";s:7:\"2800000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"2800000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"2800000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"c514ac23a673ce958390ba731b5a71eb\";a:11:{s:3:\"key\";s:32:\"c514ac23a673ce958390ba731b5a71eb\";s:10:\"product_id\";i:61122;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2800000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2800000;s:8:\"line_tax\";d:0;}}\";s:10:\"wc_notices\";s:266:\"a:1:{s:7:\"success\";a:1:{i:0;a:2:{s:6:\"notice\";s:191:\"&ldquo;Ariston 9kg Heat Pump Tumble Dryer, Freestanding, NTM119X1SK, White&rdquo; has been added to your cart. <a href=\"https://www.abanista.com/cart/\" class=\"button wc-forward\">View cart</a>\";s:4:\"data\";a:0:{}}}}\";}', 1764116244)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:17:25 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:17:25 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:17:45 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:17:45 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:17:45 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:17:45 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_02c0f8e7ece60b32a752ffae456b08', 'a:7:{s:22:\"shipping_for_package_0\";s:2359:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_e7af5226249ebfd77949dceb91d7eecf\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:64:\"Samsung 10KG Front Load Washing Machine WW10DG5U34ABNQ &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"10000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:64:\"Samsung 10KG Front Load Washing Machine WW10DG5U34ABNQ &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:64:\"Samsung 10KG Front Load Washing Machine WW10DG5U34ABNQ &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:64:\"Samsung 10KG Front Load Washing Machine WW10DG5U34ABNQ &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:413:\"a:15:{s:8:\"subtotal\";s:7:\"2120000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"2120000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"2120000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"1499cf7e1457d36260a142aebe350065\";a:11:{s:3:\"key\";s:32:\"1499cf7e1457d36260a142aebe350065\";s:10:\"product_id\";i:23245;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2120000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2120000;s:8:\"line_tax\";d:0;}}\";s:13:\"user_district\";s:7:\"Kampala\";}', 1764116264)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:17:47 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:18:08 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:18:08 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:18:26 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:18:26 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_070590b39b90cb9764114b18c4c09d', 'a:7:{s:22:\"shipping_for_package_0\";s:2326:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_dc62848041205b507f88c3eb8c67bdd0\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:56:\"SPJ 43L Digital Solo Microwave Oven with Grill &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:56:\"SPJ 43L Digital Solo Microwave Oven with Grill &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:56:\"SPJ 43L Digital Solo Microwave Oven with Grill &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:56:\"SPJ 43L Digital Solo Microwave Oven with Grill &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:410:\"a:15:{s:8:\"subtotal\";s:6:\"490000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"490000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"490000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:437:\"a:1:{s:32:\"1f5fedada2eafc6fd9fbbf43f6e04498\";a:11:{s:3:\"key\";s:32:\"1f5fedada2eafc6fd9fbbf43f6e04498\";s:10:\"product_id\";i:68192;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:490000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:490000;s:8:\"line_tax\";d:0;}}\";s:13:\"user_district\";s:7:\"Kampala\";}', 1764116305)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:18:40 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:18:40 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:19:15 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:19:15 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:20:07 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:20:07 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:21:09 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:21:09 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:21:30 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:21:30 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:22:04 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:22:04 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:22:09 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:22:09 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:22:16 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:22:16 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:22:20 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:22:20 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:22:25 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:22:25 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:22:34 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:22:34 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:23:05 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:23:05 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:23:18 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:23:18 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:23:21 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:23:21 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:23:22 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:23:22 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:23:22 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:23:22 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:23:26 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:23:26 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_0ef73ebf700e86f3a513671a2eb15b', 'a:7:{s:22:\"shipping_for_package_0\";s:2635:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_255ab4b179794c90c64198ddf175eca9\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:132:\"IQRA 90cm Built-in Hob, 4 Gas Burners + 1 Electric, Stainless Steel, Pulse Ignition, Cast Iron Pan Supports, IQ-KH5006E-SS &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"10000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:132:\"IQRA 90cm Built-in Hob, 4 Gas Burners + 1 Electric, Stainless Steel, Pulse Ignition, Cast Iron Pan Supports, IQ-KH5006E-SS &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:132:\"IQRA 90cm Built-in Hob, 4 Gas Burners + 1 Electric, Stainless Steel, Pulse Ignition, Cast Iron Pan Supports, IQ-KH5006E-SS &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:132:\"IQRA 90cm Built-in Hob, 4 Gas Burners + 1 Electric, Stainless Steel, Pulse Ignition, Cast Iron Pan Supports, IQ-KH5006E-SS &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:410:\"a:15:{s:8:\"subtotal\";s:6:\"950000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"950000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"950000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:437:\"a:1:{s:32:\"accf24d9a29ab5a97d63b05cc24bc595\";a:11:{s:3:\"key\";s:32:\"accf24d9a29ab5a97d63b05cc24bc595\";s:10:\"product_id\";i:64397;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:950000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:950000;s:8:\"line_tax\";d:0;}}\";s:13:\"user_district\";s:7:\"Kampala\";}', 1764116605)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:23:35 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:23:35 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_7b766ab668c3e01073ea29dac94643', 'a:7:{s:22:\"shipping_for_package_0\";s:2523:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_91dbc2cfb59ad9f47679c8eb4d3e9517\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:104:\"Electrolux 90*60cm 5 Burners Gas Cooker w/ Gas Oven, Fan Assisted, Stainless Steel, EKG9200A9X &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"10000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:104:\"Electrolux 90*60cm 5 Burners Gas Cooker w/ Gas Oven, Fan Assisted, Stainless Steel, EKG9200A9X &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:104:\"Electrolux 90*60cm 5 Burners Gas Cooker w/ Gas Oven, Fan Assisted, Stainless Steel, EKG9200A9X &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:104:\"Electrolux 90*60cm 5 Burners Gas Cooker w/ Gas Oven, Fan Assisted, Stainless Steel, EKG9200A9X &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:413:\"a:15:{s:8:\"subtotal\";s:7:\"2890000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"2890000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"2890000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"a06dfaedc1e4413666a940fb0e84fbd6\";a:11:{s:3:\"key\";s:32:\"a06dfaedc1e4413666a940fb0e84fbd6\";s:10:\"product_id\";i:25892;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:2890000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2890000;s:8:\"line_tax\";d:0;}}\";s:13:\"user_district\";s:7:\"Kampala\";}', 1764116614)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:23:36 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 00:23:36 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 00:23:36 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 00:23:36 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 00:24:11 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:24:11 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:24:18 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:24:18 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:25:50 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:25:50 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:25:50 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:25:50 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_c28dc3a7882d5911fb1cfa20220744', 'a:7:{s:22:\"shipping_for_package_0\";s:1909:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_bdafacac4f6bbcc894d4e1691747048b\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"20000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:58:\"Samsung 43-inch Full HD Smart LED TV, UA43F6000F &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:58:\"Samsung 43-inch Full HD Smart LED TV, UA43F6000F &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:58:\"Samsung 43-inch Full HD Smart LED TV, UA43F6000F &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:425:\"a:15:{s:8:\"subtotal\";s:7:\"1550000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:5:\"20000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:1:{i:1;d:0;}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1550000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1570000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"b2c1a4c8e4f9c3f8efe19a903a005149\";a:11:{s:3:\"key\";s:32:\"b2c1a4c8e4f9c3f8efe19a903a005149\";s:10:\"product_id\";i:18752;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1550000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1550000;s:8:\"line_tax\";d:0;}}\";s:10:\"wc_notices\";s:247:\"a:1:{s:7:\"success\";a:1:{i:0;a:2:{s:6:\"notice\";s:172:\"&ldquo;Samsung 43-inch Full HD Smart LED TV, UA43F6000F&rdquo; has been added to your cart. <a href=\"https://www.abanista.com/cart/\" class=\"button wc-forward\">View cart</a>\";s:4:\"data\";a:0:{}}}}\";}', 1764116750)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:27:20 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:27:20 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:28:06 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:28:06 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:28:36 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:28:36 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:28:44 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:28:51 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:28:51 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:29:17 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:29:17 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:29:29 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:30:46 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:30:46 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:36:01 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:36:01 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_13ca51749f4f0a484303968aa278b3', 'a:7:{s:22:\"shipping_for_package_0\";s:1941:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_62b8ce4dfb5839659d0a461aae30442a\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:69:\"Decakila 5.5 Litre Aluminum Alloy Pressure Cooker, KMER018M &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:69:\"Decakila 5.5 Litre Aluminum Alloy Pressure Cooker, KMER018M &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:69:\"Decakila 5.5 Litre Aluminum Alloy Pressure Cooker, KMER018M &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:421:\"a:15:{s:8:\"subtotal\";s:6:\"170000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"5000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:1:{i:1;d:0;}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"170000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"175000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:437:\"a:1:{s:32:\"7c5c040ae5d810d39deebbc55a06ff3f\";a:11:{s:3:\"key\";s:32:\"7c5c040ae5d810d39deebbc55a06ff3f\";s:10:\"product_id\";i:59193;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:170000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:170000;s:8:\"line_tax\";d:0;}}\";s:13:\"user_district\";s:7:\"Kampala\";}', 1764117360)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:36:03 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 00:36:03 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_423ee1f83ef3fa6c159ea33c6eb34d', 'a:7:{s:22:\"shipping_for_package_0\";s:2611:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_23de96c833366113054909f652ca9808\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:126:\"Samsung 26 Kg Front Load Smart Washing Machine, Bespoke AI Wash, AI Ecobubble, Touchscreen, Dark Steel, WF90F26ADSNQ &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"10000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:126:\"Samsung 26 Kg Front Load Smart Washing Machine, Bespoke AI Wash, AI Ecobubble, Touchscreen, Dark Steel, WF90F26ADSNQ &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:126:\"Samsung 26 Kg Front Load Smart Washing Machine, Bespoke AI Wash, AI Ecobubble, Touchscreen, Dark Steel, WF90F26ADSNQ &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:126:\"Samsung 26 Kg Front Load Smart Washing Machine, Bespoke AI Wash, AI Ecobubble, Touchscreen, Dark Steel, WF90F26ADSNQ &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:413:\"a:15:{s:8:\"subtotal\";s:7:\"4650000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"4650000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"4650000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"c2f5a98f538a51b4e13f38d172da0277\";a:11:{s:3:\"key\";s:32:\"c2f5a98f538a51b4e13f38d172da0277\";s:10:\"product_id\";i:78852;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4650000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4650000;s:8:\"line_tax\";d:0;}}\";s:13:\"user_district\";s:7:\"Kampala\";}', 1764117361)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 00:54:33 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 00:54:33 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 00:54:33 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 00:54:33 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 00:54:33 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 00:54:33 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 00:54:33 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 00:54:33 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 04:07:01 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:07:01 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_3ae32b44f20ce4c1be078e485acfaa', 'a:7:{s:22:\"shipping_for_package_0\";s:2367:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_9b6574fb45ba7ca785c667a96b5c89fd\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:72:\"CHiQ 260 Litre 2-Door Bottom Freezer Refrigerator, CTM260DBIK3 &times; 2\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"25500\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:72:\"CHiQ 260 Litre 2-Door Bottom Freezer Refrigerator, CTM260DBIK3 &times; 2\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:72:\"CHiQ 260 Litre 2-Door Bottom Freezer Refrigerator, CTM260DBIK3 &times; 2\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:72:\"CHiQ 260 Litre 2-Door Bottom Freezer Refrigerator, CTM260DBIK3 &times; 2\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:405:\"a:15:{s:8:\"subtotal\";s:7:\"2200000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"2200000\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"2200000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:423:\"a:1:{s:32:\"724af089abf7ee28abcf4935029e8e17\";a:11:{s:3:\"key\";s:32:\"724af089abf7ee28abcf4935029e8e17\";s:10:\"product_id\";i:52172;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:2200000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2200000;s:8:\"line_tax\";d:0;}}\";s:13:\"user_district\";s:7:\"Kampala\";}', 1764119144)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 01:10:08 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 01:10:08 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 01:10:15 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 01:10:15 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 01:11:00 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 01:11:00 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:11:38 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:11:38 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:11:48 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:11:48 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 01:11:49 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 01:11:49 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 01:12:55 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 01:12:55 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 01:13:35 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 01:13:35 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 01:13:43 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 01:13:43 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 01:14:26 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 01:14:26 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 01:34:15 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 01:34:15 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 01:34:15 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 01:34:15 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 01:52:10 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 01:52:10 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 01:52:10 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 01:52:10 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 01:52:10 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 01:52:10 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 01:52:10 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 01:52:10 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 01:58:24 UTC] abanista_save_push_token payload: {token:[REDACTED], platform:android, app:Abanista}
    [24-Nov-2025 02:00:38 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 02:00:39 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 02:00:50 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:00:50 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:00:50 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:00:50 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:00:50 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:00:50 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:00:50 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:00:50 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:02:18 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 02:16:08 UTC] abanista_save_push_token payload: {token:[REDACTED], platform:android, app:Abanista}
    [24-Nov-2025 02:25:30 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:25:30 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:25:30 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:25:30 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:25:30 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:25:30 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:25:30 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:25:30 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:27:04 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 02:29:41 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:29:41 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:29:41 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:29:41 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:29:41 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:29:41 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:29:41 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:29:41 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:49:29 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:49:29 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:49:29 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:49:29 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:49:29 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:49:29 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:49:29 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:49:29 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 02:50:17 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 02:50:17 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 02:50:18 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 02:50:18 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_6d124fcdb4c30f0ee0140e6ef847a0', 'a:7:{s:22:\"shipping_for_package_0\";s:2535:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_d658c78cdf7fa95572a5f31ad59aff1b\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:107:\"Electrolux 528 Litre Side by Side Fridge with Water Dispenser, Inverter Technology (ESE5441A-AME) &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"30000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:107:\"Electrolux 528 Litre Side by Side Fridge with Water Dispenser, Inverter Technology (ESE5441A-AME) &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:107:\"Electrolux 528 Litre Side by Side Fridge with Water Dispenser, Inverter Technology (ESE5441A-AME) &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:107:\"Electrolux 528 Litre Side by Side Fridge with Water Dispenser, Inverter Technology (ESE5441A-AME) &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:413:\"a:15:{s:8:\"subtotal\";s:7:\"4750000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"4750000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"4750000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:438:\"a:1:{s:32:\"55c567fd4395ecef6d936cf77b8d5b2b\";a:11:{s:3:\"key\";s:32:\"55c567fd4395ecef6d936cf77b8d5b2b\";s:10:\"product_id\";i:1497;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:4750000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:4750000;s:8:\"line_tax\";d:0;}}\";s:10:\"wc_notices\";s:296:\"a:1:{s:7:\"success\";a:1:{i:0;a:2:{s:6:\"notice\";s:221:\"&ldquo;Electrolux 528 Litre Side by Side Fridge with Water Dispenser, Inverter Technology (ESE5441A-AME)&rdquo; has been added to your cart. <a href=\"https://www.abanista.com/cart/\" class=\"button wc-forward\">View cart</a>\";s:4:\"data\";a:0:{}}}}\";}', 1764125417)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 02:50:32 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 02:50:32 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 02:51:29 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 02:51:29 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 02:52:03 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 02:52:03 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 02:52:56 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 02:52:56 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 02:53:19 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 02:53:19 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 02:53:33 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 02:53:33 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 02:53:33 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 02:53:33 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 02:53:33 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 02:53:33 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 02:54:16 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 02:54:16 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 02:54:24 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 02:55:05 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 02:55:05 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 02:55:35 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 02:55:36 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:55:54 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:55:54 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:56:43 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:56:43 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 02:57:23 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 02:57:23 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 02:57:35 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 02:57:35 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:57:39 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:57:39 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 02:57:48 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 02:57:48 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:07:46 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:07:46 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:07:46 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:07:46 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:07:50 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:07:50 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:07:50 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:07:50 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:07:53 UTC] abanista_save_push_token payload: {token:[REDACTED], platform:android, app:Abanista}
    [24-Nov-2025 03:16:44 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:16:44 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:17:04 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:17:04 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 06:17:12 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 06:17:12 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:17:14 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:17:14 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:17:21 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:17:32 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:17:32 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:18:12 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:18:12 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:18:12 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:18:12 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:18:15 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:18:15 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:19:23 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:19:23 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:19:26 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:19:26 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:31:56 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:31:56 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:31:56 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:31:56 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:31:56 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:31:56 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:31:56 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:31:56 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:40:32 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:40:32 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:40:35 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:40:35 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:41:02 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:41:02 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:41:19 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:41:27 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:41:27 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:41:27 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:41:27 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:41:27 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:41:27 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:41:38 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:41:38 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:41:50 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:41:50 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:41:50 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:41:50 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:41:50 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:41:50 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:41:50 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:41:50 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:42:11 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:42:11 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:42:11 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:42:11 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:42:11 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:42:11 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:42:11 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:42:11 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:42:45 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:42:45 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:42:45 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:42:45 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:42:45 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:42:45 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:42:45 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 03:42:45 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 06:42:58 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 06:42:58 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:42:59 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:42:59 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:42:59 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:42:59 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 06:43:32 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 06:43:32 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:43:33 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:43:33 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:43:43 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:43:43 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:43:43 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:43:43 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:43:44 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:43:44 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:44:14 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:44:14 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:44:28 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:44:28 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:44:30 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:44:30 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 06:45:05 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 06:45:05 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 06:45:05 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 06:45:05 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:45:06 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:45:06 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:45:13 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:45:13 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:45:13 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:45:13 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:45:14 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:45:14 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:45:14 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:45:14 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:45:47 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:45:47 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 06:45:48 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 06:45:48 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:45:51 UTC] abanista_save_push_token payload: {token:[REDACTED], platform:android, app:Abanista}
    [24-Nov-2025 03:45:57 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:45:57 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 06:45:58 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 06:45:58 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 06:47:31 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 06:47:31 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:47:31 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:47:31 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:47:32 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 06:48:17 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 06:48:17 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:48:17 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:48:17 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:48:18 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 03:48:18 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 06:48:46 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 06:48:46 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 03:48:54 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:07:47 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:07:47 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:07:49 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:07:49 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 07:08:07 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 07:08:07 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:08:12 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:08:12 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:08:14 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:08:14 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:08:21 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:08:21 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:08:27 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:08:27 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:08:29 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:08:29 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:08:35 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:08:35 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:08:49 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:08:49 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:08:49 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:08:51 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:08:51 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 07:08:53 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 07:08:53 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:08:56 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:09:01 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:09:23 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:09:23 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 07:09:31 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 07:09:31 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:09:35 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:09:35 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:09:37 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:09:37 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:09:43 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:09:43 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:09:43 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:09:43 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:09:44 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:09:44 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:09:50 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:09:50 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 07:10:09 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 07:10:09 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:11:09 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:11:09 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_51b59ddbbb0f979afa6d179f58b9f8', 'a:7:{s:22:\"shipping_for_package_0\";s:2014:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_2faea309ab9aed3dab59a69576acbf8d\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"10000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:93:\"Titan 60*60cm 3 Gas + 1 Electric Freestanding Cooker w/ Electric Oven, TN-FC6310XBS &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:93:\"Titan 60*60cm 3 Gas + 1 Electric Freestanding Cooker w/ Electric Oven, TN-FC6310XBS &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:93:\"Titan 60*60cm 3 Gas + 1 Electric Freestanding Cooker w/ Electric Oven, TN-FC6310XBS &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:425:\"a:15:{s:8:\"subtotal\";s:7:\"1490000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:5:\"10000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:1:{i:1;d:0;}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1490000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1500000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"8bcd446a0b16ce6dbefa3acf438dc512\";a:11:{s:3:\"key\";s:32:\"8bcd446a0b16ce6dbefa3acf438dc512\";s:10:\"product_id\";i:31063;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1490000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1490000;s:8:\"line_tax\";d:0;}}\";s:13:\"user_district\";s:7:\"Kampala\";}', 1764130267)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:14:02 UTC] abanista_save_push_token payload: {token:[REDACTED], platform:android, app:Abanista}
    [24-Nov-2025 04:14:09 UTC] PHP Fatal error: Uncaught ArgumentCountError: Too few arguments to function {closure:/home/abanista/public_html/wp-content/plugins/abanista-store-api/abanista-store-api.php:91}(), 1 passed in /home/abanista/public_html/wp-includes/class-wp-hook.php on line 326 and exactly 2 expected in /home/abanista/public_html/wp-content/plugins/abanista-store-api/abanista-store-api.php:91
    Stack trace:
    #0 /home/abanista/public_html/wp-includes/class-wp-hook.php(326): {closure:/home/abanista/public_html/wp-content/plugins/abanista-store-api/abanista-store-api.php:91}()
    #1 /home/abanista/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
    #2 /home/abanista/public_html/wp-includes/plugin.php(517): WP_Hook->do_action()
    #3 /home/abanista/public_html/wp-content/plugins/woocommerce/src/StoreApi/Authentication.php(205): do_action()
    #4 /home/abanista/public_html/wp-content/plugins/woocommerce/src/StoreApi/Authentication.php(127): Automattic\WooCommerce\StoreApi\Authentication->apply_rate_limiting()
    #5 /home/abanista/public_html/wp-includes/class-wp-hook.php(324): Automattic\WooCommerce\StoreApi\Authentication->check_authentication()
    #6 /home/abanista/public_html/wp-includes/plugin.php(205): WP_Hook->apply_filters()
    #7 /home/abanista/public_html/wp-includes/rest-api/class-wp-rest-server.php(197): apply_filters()
    #8 /home/abanista/public_html/wp-includes/rest-api/class-wp-rest-server.php(436): WP_REST_Server->check_authentication()
    #9 /home/abanista/public_html/wp-includes/rest-api.php(459): WP_REST_Server->serve_request()
    #10 /home/abanista/public_html/wp-includes/class-wp-hook.php(324): rest_api_loaded()
    #11 /home/abanista/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()
    #12 /home/abanista/public_html/wp-includes/plugin.php(565): WP_Hook->do_action()
    #13 /home/abanista/public_html/wp-includes/class-wp.php(418): do_action_ref_array()
    #14 /home/abanista/public_html/wp-includes/class-wp.php(818): WP->parse_request()
    #15 /home/abanista/public_html/wp-includes/functions.php(1342): WP->main()
    #16 /home/abanista/public_html/wp-blog-header.php(16): wp()
    #17 /home/abanista/public_html/index.php(17): require('/home/abanista/...')
    #18 {main}
    thrown in /home/abanista/public_html/wp-content/plugins/abanista-store-api/abanista-store-api.php on line 91
    [24-Nov-2025 04:23:19 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:24:20 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 04:24:20 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 04:24:20 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 04:24:20 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 04:24:45 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 04:24:45 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 04:24:45 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 04:24:45 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 04:28:45 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:28:45 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 07:28:47 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:28:47 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 07:28:47 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:28:47 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:29:06 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:29:06 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:29:08 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:29:08 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:29:11 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:29:11 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:29:13 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:29:13 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:29:20 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:29:20 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 07:29:28 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 07:29:28 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 07:29:28 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 07:29:28 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:29:30 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 04:29:30 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 04:29:30 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 04:29:30 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 04:29:30 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 04:29:30 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 04:29:30 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 04:29:30 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 07:29:31 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 07:29:31 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:29:46 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:29:46 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:29:46 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:29:46 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:29:55 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:29:55 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:30:02 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:30:02 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:30:15 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:30:15 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:30:15 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:30:15 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:30:40 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:30:40 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:30:48 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:30:48 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:30:49 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:30:49 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:30:49 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:31:01 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:31:01 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:31:03 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:31:03 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 07:31:16 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 07:31:16 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:31:28 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:31:37 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:31:37 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:31:38 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:31:38 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:31:38 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:31:38 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 07:32:07 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 07:32:07 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:32:25 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:32:25 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:32:48 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:32:48 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:33:05 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:33:05 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 07:33:09 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 07:33:09 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_a158911c99e62d2d85834a83a3b988', 'a:7:{s:22:\"shipping_for_package_0\";s:2318:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_2a19cdbf2d68e96c5c8f3e203fcd5afd\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:60:\"JBL T220 TWS True Wireless Earbuds with Microphone &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:60:\"JBL T220 TWS True Wireless Earbuds with Microphone &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:60:\"JBL T220 TWS True Wireless Earbuds with Microphone &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:60:\"JBL T220 TWS True Wireless Earbuds with Microphone &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:402:\"a:15:{s:8:\"subtotal\";s:6:\"499000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"499000\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"499000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:421:\"a:1:{s:32:\"e6ec91cba600ca785d5e02beb0d0c8eb\";a:11:{s:3:\"key\";s:32:\"e6ec91cba600ca785d5e02beb0d0c8eb\";s:10:\"product_id\";i:24943;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:499000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:499000;s:8:\"line_tax\";d:0;}}\";s:13:\"user_district\";s:7:\"Kampala\";}', 1764131588)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 07:33:42 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 07:33:42 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:33:44 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:33:44 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 07:33:54 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 07:33:54 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:34:15 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 04:34:15 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 04:34:15 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 04:34:15 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 07:34:30 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 07:34:30 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:35:21 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:35:21 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:36:02 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:36:02 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:36:53 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:36:53 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:36:54 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:36:54 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:37:59 UTC] abanista_save_push_token payload: {token:[REDACTED], platform:android, app:Abanista}
    [24-Nov-2025 04:54:24 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 04:54:24 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 04:54:24 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 04:54:24 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 04:54:24 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 04:54:24 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 04:54:24 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 04:54:24 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 04:56:03 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:56:03 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:56:12 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:56:12 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:56:17 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:56:17 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:56:38 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:56:38 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 07:57:02 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 07:57:02 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:57:08 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:57:08 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:57:12 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 04:57:12 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 04:58:39 UTC] abanista_save_push_token payload: {token:[REDACTED], platform:android, app:Abanista}
    [24-Nov-2025 05:00:10 UTC] abanista_save_push_token payload: {token:[REDACTED], platform:android, app:Abanista}
    [24-Nov-2025 05:02:00 UTC] abanista_save_push_token payload: {token:[REDACTED], platform:android, app:Abanista}
    [24-Nov-2025 05:16:03 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:16:14 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:16:14 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 08:16:16 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 08:16:16 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:16:16 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:16:16 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:16:26 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:16:26 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 08:16:38 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 08:16:38 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:16:40 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:16:40 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:16:58 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:16:58 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:16:59 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:16:59 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:17:29 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:18:04 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:18:04 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:18:04 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:18:04 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 08:18:35 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 08:18:35 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 08:18:35 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 08:18:35 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:18:37 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:18:37 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:18:53 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:18:53 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 08:19:22 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 08:19:22 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:19:30 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:19:30 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:19:30 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:19:30 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:19:36 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:19:36 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:20:22 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:20:22 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:20:55 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:20:55 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 08:21:02 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 08:21:02 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:21:03 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:21:03 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:21:13 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:21:13 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:21:56 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:21:56 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 08:22:40 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 08:22:40 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:23:15 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:23:15 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:23:16 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:23:16 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:23:24 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:23:24 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:23:24 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:23:24 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:23:26 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:23:26 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:23:56 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:23:56 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:24:01 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:24:01 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:24:11 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:24:11 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:24:11 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:24:11 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:24:42 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:24:42 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:24:59 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:24:59 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:24:59 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:24:59 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:24:59 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:24:59 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:25:34 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:25:34 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:26:06 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:26:06 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:26:10 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:26:10 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:26:16 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:26:16 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:26:26 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:26:26 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:26:27 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:26:27 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 08:33:49 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 08:33:49 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:33:49 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:33:49 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 08:34:34 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 08:34:34 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:34:40 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:34:40 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:34:41 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:34:41 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:35:09 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:35:09 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:35:53 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:35:53 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:36:47 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:36:47 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 08:38:17 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 08:38:17 Africa/Kampala] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:38:18 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:38:18 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 05:38:26 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 05:38:26 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data

    I never used to have object cache but i added it hoping to solve the problem but it didnt help as well. below is my system report

    <br>### WordPress Environment ###<br><br>WordPress address (URL): https://www.abanista.com<br>Site address (URL): https://www.abanista.com<br>WC Version: 10.3.5<br>Legacy REST API Package Version: The Legacy REST API plugin is not installed on this site.<br>Action Scheduler Version: ✔ 3.9.3<br>Log Directory Writable: ✔<br>WP Version: 6.8.3<br>WP Multisite: –<br>WP Memory Limit: 1 GB<br>WP Debug Mode: ✔<br>WP Cron: ✔<br>Language: en_US<br>External object cache: ✔<br><br>### Server Environment ###<br><br>Server Info: LiteSpeed<br>Server Architecture: Linux 5.14.0-570.28.1.el9_6.x86_64 x86_64<br>PHP Version: 8.4.14<br>PHP Post Max Size: 8 MB<br>PHP Time Limit: 30<br>PHP Max Input Vars: 1000<br>cURL Version: 8.14.1<br>OpenSSL/3.2.2<br><br>SUHOSIN Installed: –<br>MySQL Version: 10.11.15-MariaDB<br>Max Upload Size: 2 MB<br>Default Timezone is UTC: ✔<br>fsockopen/cURL: ✔<br>SoapClient: ✔<br>DOMDocument: ✔<br>GZip: ✔<br>Multibyte String: ✔<br>Remote Post: ✔<br>Remote Get: ✔<br><br>### Database ###<br><br>WC Database Version: 10.3.5<br>WC Database Prefix: wp_<br>Total Database Size: 1316.50MB<br>Database Data Size: 707.67MB<br>Database Index Size: 608.83MB<br>wp_woocommerce_sessions: Data: 77.09MB + Index: 1.86MB + Engine InnoDB<br>wp_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB<br>wp_woocommerce_order_items: Data: 1.52MB + Index: 0.48MB + Engine InnoDB<br>wp_woocommerce_order_itemmeta: Data: 10.52MB + Index: 8.03MB + Engine InnoDB<br>wp_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB<br>wp_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_abanista_loyalty_ledger: Data: 0.02MB + Index: 0.06MB + Engine InnoDB<br>wp_abanista_wishlist: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_abanista_wishlist_product: Data: 0.08MB + Index: 0.00MB + Engine InnoDB<br>wp_actionscheduler_actions: Data: 42.08MB + Index: 58.70MB + Engine InnoDB<br>wp_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_actionscheduler_logs: Data: 31.56MB + Index: 18.03MB + Engine InnoDB<br>wp_automatewoo_abandoned_carts: Data: 0.08MB + Index: 0.08MB + Engine InnoDB<br>wp_automatewoo_customers: Data: 0.52MB + Index: 0.92MB + Engine InnoDB<br>wp_automatewoo_customer_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_automatewoo_guests: Data: 0.09MB + Index: 0.17MB + Engine InnoDB<br>wp_automatewoo_guest_meta: Data: 0.23MB + Index: 0.22MB + Engine InnoDB<br>wp_automatewoo_logs: Data: 0.13MB + Index: 0.19MB + Engine InnoDB<br>wp_automatewoo_log_meta: Data: 1.52MB + Index: 0.39MB + Engine InnoDB<br>wp_automatewoo_queue: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_automatewoo_queue_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_commentmeta: Data: 0.39MB + Index: 0.34MB + Engine InnoDB<br>wp_comments: Data: 6.52MB + Index: 8.53MB + Engine InnoDB<br>wp_cr_local_forms: Data: 0.14MB + Index: 0.03MB + Engine InnoDB<br>wp_cr_reminders_log: Data: 0.08MB + Index: 0.08MB + Engine InnoDB<br>wp_dgwt_wcas_index: Data: 3.52MB + Index: 0.58MB + Engine InnoDB<br>wp_dgwt_wcas_invindex_cache: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_dgwt_wcas_invindex_doclist: Data: 13.52MB + Index: 16.03MB + Engine InnoDB<br>wp_dgwt_wcas_invindex_wordlist: Data: 2.52MB + Index: 2.50MB + Engine InnoDB<br>wp_dgwt_wcas_stats: Data: 3.52MB + Index: 0.00MB + Engine InnoDB<br>wp_dgwt_wcas_tax_index: Data: 0.19MB + Index: 0.11MB + Engine InnoDB<br>wp_erp_acct_bills: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_bill_account_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_bill_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_cash_at_banks: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_chart_of_accounts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_currency_info: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_expenses: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_expense_checks: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_expense_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_financial_years: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_invoices: Data: 0.13MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_invoice_account_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_invoice_details: Data: 0.09MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_invoice_details_tax: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_invoice_receipts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_invoice_receipts_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_journals: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_journal_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_ledgers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_ledger_categories: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_ledger_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_ledger_settings: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_opening_balances: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_payment_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_pay_bill: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_pay_bill_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_pay_purchase: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_pay_purchase_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_people_account_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_people_trn: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_people_trn_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_products: Data: 0.06MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_product_categories: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_product_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_product_types: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_purchase: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_purchase_account_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_purchase_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_purchase_details_tax: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_synced_taxes: Data: 0.02MB + Index: 0.08MB + Engine InnoDB<br>wp_erp_acct_taxes: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_tax_agencies: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_tax_agency_details: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_tax_categories: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_tax_cat_agency: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_tax_pay: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_transfer_voucher: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_trn_status_types: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_acct_voucher_no: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_audit_log: Data: 0.20MB + Index: 0.13MB + Engine InnoDB<br>wp_erp_company_locations: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_erp_crm_activities_task: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_erp_crm_contact_group: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_crm_contact_subscriber: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_erp_crm_customer_activities: Data: 0.02MB + Index: 0.06MB + Engine InnoDB<br>wp_erp_crm_customer_companies: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_erp_crm_save_email_replies: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_crm_save_search: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_holidays_indv: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_hr_announcement: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_erp_hr_dependents: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_erp_hr_depts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_hr_designations: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_hr_education: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_erp_hr_employees: Data: 0.02MB + Index: 0.08MB + Engine InnoDB<br>wp_erp_hr_employee_history: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_erp_hr_employee_notes: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_hr_employee_performance: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_erp_hr_financial_years: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_erp_hr_holiday: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_hr_leaves: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_erp_hr_leaves_unpaid: Data: 0.02MB + Index: 0.08MB + Engine InnoDB<br>wp_erp_hr_leave_approval_status: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_erp_hr_leave_encashment_requests: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_erp_hr_leave_entitlements: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_erp_hr_leave_policies: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_erp_hr_leave_policies_segregation: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_erp_hr_leave_requests: Data: 0.02MB + Index: 0.08MB + Engine InnoDB<br>wp_erp_hr_leave_request_details: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_erp_hr_work_exp: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_erp_peoplemeta: Data: 0.27MB + Index: 0.25MB + Engine InnoDB<br>wp_erp_peoples: Data: 1.52MB + Index: 0.69MB + Engine InnoDB<br>wp_erp_people_types: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_erp_people_type_relations: Data: 0.34MB + Index: 0.34MB + Engine InnoDB<br>wp_erp_user_leaves: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_expm_hiiden_content: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_expm_maker: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_expm_maker_pages: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_fibofilters_descriptors_main: Data: 1.52MB + Index: 0.08MB + Engine InnoDB<br>wp_fibofilters_doclist_main: Data: 2.52MB + Index: 0.00MB + Engine InnoDB<br>wp_fibofilters_sources_main: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_fibofilters_valuelist_main: Data: 0.16MB + Index: 0.16MB + Engine InnoDB<br>wp_find_and_replace: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_firebase_tokens: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_fs_activities: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_fs_attachments: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_fs_conversations: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_fs_data_metrix: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_fs_mail_boxes: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_fs_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_fs_persons: Data: 0.05MB + Index: 0.00MB + Engine InnoDB<br>wp_fs_products: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_fs_taggables: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_fs_tag_pivot: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_fs_tickets: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_gla_attribute_mapping_rules: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_gla_budget_recommendations: Data: 0.19MB + Index: 0.11MB + Engine InnoDB<br>wp_gla_merchant_issues: Data: 0.19MB + Index: 0.00MB + Engine InnoDB<br>wp_gla_merchant_price_benchmarks: Data: 0.08MB + Index: 0.05MB + Engine InnoDB<br>wp_gla_shipping_rates: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_gla_shipping_times: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_grp_google_place: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_grp_google_review: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_grp_google_stats: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_jetpack_sync_queue: Data: 0.02MB + Index: 0.06MB + Engine InnoDB<br>wp_jetpack_waf_blocklog: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_litespeed_avatar: Data: 0.20MB + Index: 0.14MB + Engine InnoDB<br>wp_litespeed_img_optm: Data: 2.52MB + Index: 0.83MB + Engine InnoDB<br>wp_litespeed_img_optming: Data: 2.52MB + Index: 2.20MB + Engine InnoDB<br>wp_litespeed_url: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_litespeed_url_file: Data: 0.02MB + Index: 0.08MB + Engine InnoDB<br>wp_ms_snippets: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_options: Data: 83.30MB + Index: 29.23MB + Engine InnoDB<br>wp_postmeta: Data: 102.64MB + Index: 103.80MB + Engine InnoDB<br>wp_posts: Data: 15.52MB + Index: 4.00MB + Engine InnoDB<br>wp_rank_math_404_logs: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_rank_math_analytics_gsc: Data: 179.23MB + Index: 239.69MB + Engine InnoDB<br>wp_rank_math_analytics_inspections: Data: 2.52MB + Index: 0.75MB + Engine InnoDB<br>wp_rank_math_analytics_objects: Data: 1.52MB + Index: 0.19MB + Engine InnoDB<br>wp_rank_math_internal_links: Data: 0.14MB + Index: 0.09MB + Engine InnoDB<br>wp_rank_math_internal_meta: Data: 0.13MB + Index: 0.00MB + Engine InnoDB<br>wp_rank_math_redirections: Data: 0.11MB + Index: 0.02MB + Engine InnoDB<br>wp_rank_math_redirections_cache: Data: 0.20MB + Index: 0.06MB + Engine InnoDB<br>wp_rewards_points: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_serial_numbers: Data: 0.02MB + Index: 0.11MB + Engine InnoDB<br>wp_serial_numbers_activations: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_sib_model_forms: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_sib_model_users: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_snippets: Data: 0.30MB + Index: 0.03MB + Engine InnoDB<br>wp_termmeta: Data: 1.52MB + Index: 1.80MB + Engine InnoDB<br>wp_terms: Data: 0.17MB + Index: 0.16MB + Engine InnoDB<br>wp_term_relationships: Data: 2.52MB + Index: 1.52MB + Engine InnoDB<br>wp_term_taxonomy: Data: 2.52MB + Index: 0.23MB + Engine InnoDB<br>wp_usermeta: Data: 17.55MB + Index: 12.03MB + Engine InnoDB<br>wp_users: Data: 1.52MB + Index: 0.56MB + Engine InnoDB<br>wp_vi_wad_error_product_images: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcboost_wishlist_items: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_wcfm_daily_analysis: Data: 0.06MB + Index: 0.05MB + Engine InnoDB<br>wp_wcfm_detailed_analysis: Data: 0.11MB + Index: 0.00MB + Engine InnoDB<br>wp_wcfm_enquiries: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcfm_enquiries_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcfm_enquiries_response: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcfm_enquiries_response_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcfm_fbc_chat_rows: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcfm_fbc_chat_sessions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_wcfm_fbc_chat_visitors: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcfm_fbc_offline_messages: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcfm_following_followers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcfm_marketplace_orders: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_wcfm_marketplace_orders_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcfm_marketplace_product_multivendor: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_wcfm_marketplace_refund_request: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcfm_marketplace_refund_request_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcfm_marketplace_reverse_withdrawal: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcfm_marketplace_reverse_withdrawal_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcfm_marketplace_reviews: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcfm_marketplace_reviews_response: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcfm_marketplace_reviews_response_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcfm_marketplace_review_rating_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcfm_marketplace_shipping_zone_locations: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcfm_marketplace_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcfm_marketplace_store_taxonomies: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcfm_marketplace_vendor_ledger: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcfm_marketplace_withdraw_request: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcfm_marketplace_withdraw_request_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcfm_membership_subscription: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_wcfm_messages: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcfm_messages_modifier: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcfm_messages_stat: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcfm_support: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcfm_support_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcfm_support_response: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcfm_support_response_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcpdf_invoice_number: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcpdf_invoice_number_2020: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcpdf_invoice_number_2023: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcpdf_invoice_number_2024: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcpdf_packing_slip_number: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcpv_commissions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcpv_per_product_shipping_rules: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wcusage_activity: Data: 0.05MB + Index: 0.00MB + Engine InnoDB<br>wp_wcusage_clicks: Data: 0.05MB + Index: 0.00MB + Engine InnoDB<br>wp_wcusage_register: Data: 0.05MB + Index: 0.00MB + Engine InnoDB<br>wp_wc_admin_notes: Data: 0.14MB + Index: 0.00MB + Engine InnoDB<br>wp_wc_admin_note_actions: Data: 0.11MB + Index: 0.02MB + Engine InnoDB<br>wp_wc_category_lookup: Data: 0.05MB + Index: 0.00MB + Engine InnoDB<br>wp_wc_customer_lookup: Data: 1.52MB + Index: 0.48MB + Engine InnoDB<br>wp_wc_deposits_payment_plans: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wc_deposits_payment_plans_schedule: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_wc_orders: Data: 1.52MB + Index: 1.42MB + Engine InnoDB<br>wp_wc_orders_meta: Data: 14.52MB + Index: 18.02MB + Engine InnoDB<br>wp_wc_order_addresses: Data: 1.52MB + Index: 1.45MB + Engine InnoDB<br>wp_wc_order_bundle_lookup: Data: 0.02MB + Index: 0.09MB + Engine InnoDB<br>wp_wc_order_coupon_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_wc_order_operational_data: Data: 1.52MB + Index: 0.28MB + Engine InnoDB<br>wp_wc_order_product_lookup: Data: 1.52MB + Index: 0.91MB + Engine InnoDB<br>wp_wc_order_stats: Data: 1.52MB + Index: 0.38MB + Engine InnoDB<br>wp_wc_order_tax_lookup: Data: 0.16MB + Index: 0.14MB + Engine InnoDB<br>wp_wc_product_attributes_lookup: Data: 2.52MB + Index: 1.52MB + Engine InnoDB<br>wp_wc_product_download_directories: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_wc_product_meta_lookup: Data: 0.50MB + Index: 1.02MB + Engine InnoDB<br>wp_wc_rate_limits: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_wc_reserved_stock: Data: 0.23MB + Index: 0.00MB + Engine InnoDB<br>wp_wc_se_queue: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_wc_se_settings: Data: 0.02MB + Index: 0.00MB + Engine InnoDB<br>wp_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_wc_warranty_products: Data: 0.02MB + Index: 0.05MB + Engine InnoDB<br>wp_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_wfpklist_template_data: Data: 0.11MB + Index: 0.00MB + Engine InnoDB<br>wp_woocommerce_bolt_checkout_sessions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_woocommerce_bundled_itemmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_woocommerce_bundled_items: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_woo_wallet_transactions: Data: 1.52MB + Index: 0.13MB + Engine InnoDB<br>wp_woo_wallet_transaction_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_wps_hit: Data: 0.02MB + Index: 0.14MB + Engine InnoDB<br>wp_wps_index: Data: 44.58MB + Index: 46.64MB + Engine InnoDB<br>wp_wps_key: Data: 1.52MB + Index: 1.52MB + Engine InnoDB<br>wp_wps_object_term: Data: 4.52MB + Index: 9.09MB + Engine InnoDB<br>wp_wps_object_type: Data: 0.02MB + Index: 0.08MB + Engine InnoDB<br>wp_wps_query: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_wps_uri: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_wps_user_agent: Data: 0.02MB + Index: 0.02MB + Engine InnoDB<br>wp_yith_wcwl: Data: 1.52MB + Index: 1.52MB + Engine InnoDB<br>wp_yith_wcwl_itemmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB<br>wp_yith_wcwl_lists: Data: 2.52MB + Index: 4.83MB + Engine InnoDB<br><br>### Post Type Counts ###<br><br>abanista_message: 1<br>abanista_ticket: 1<br>amn_wpforms-lite: 1<br>attachment: 7895<br>aw_workflow: 7<br>b2bking_custom_role: 2<br>b2bking_group: 1<br>custom_css: 2<br>custom-css-js: 1<br>feedback: 179<br>global_product_addon: 1<br>grw_feed: 1<br>jetpack_migration: 1<br>jp_img_sitemap: 2<br>jp_img_sitemap_index: 1<br>jp_sitemap: 1<br>jp_sitemap_master: 1<br>nav_menu_item: 29<br>oembed_cache: 6<br>page: 81<br>popup_theme: 6<br>post: 102<br>product: 2643<br>product_variation: 1658<br>productsliderwoo: 1<br>pwbf_event: 1<br>rm_content_editor: 1<br>shop_coupon: 60<br>shop_order: 4557<br>shop_order_refund: 27<br>shop_order_vendor: 1<br>shopmagic_automation: 7<br>stocktend_object: 7037<br>stocktend_tryst: 1<br>vi_wad_draft_product: 4<br>wa-order-numbers: 1<br>warranty_request: 1<br>woo_email: 15<br>wp_global_styles: 2<br>wp_navigation: 4<br>wpc_smart_message: 6<br>wpclv: 25<br><br>### Security ###<br><br>Secure connection (HTTPS): ✔<br>Hide errors from visitors: ✔<br><br>### Active Plugins (1) ###<br><br>WooCommerce: by Automattic – 10.3.5<br><br>### Inactive Plugins (55) ###<br><br>Abanista - Click to Order or Chat: by The Abanista Team – 1.0.8<br>Abanista - Order Status Manager & Notifications: by Abanista Dev Team – 1.1.0<br>Abanista Additional Gateways: by Abanista – 0.1<br>Abanista App Deals: by Abanista Dev Team – 1.2.0<br>Abanista Cart Tab: by The Abanista Team – 1.1.2<br>Abanista Coffee API Endpoint: by Abanista Dev Team – 0.4.0<br>Abanista Dynamic Deals Today: by Abanista Dev Team – 1.2.0<br>Abanista Loyalty: by Abanista Dev – 1.2.0<br>Abanista OTP Reset and Register: by Abanista – 1.4<br>Abanista Preferences: by Abanista Dev – 1.0.4<br>Abanista Prime: by Abanista Dev – 0.3.4<br>Abanista Product SKU Generator: by Abanista – 2.5.0<br>Abanista Product Tags Endpoint: by Abanista – 1.4.0<br>Abanista Push Notifications: by Abanista Dev Team – 1.10.0<br>Abanista Rest API: by The Abanista Dev Team – 1.12<br>Abanista Store API: by The Abanista Dev Team – 1.2<br>Abanista Support Ticket System: by Abanista Dev Team (Cristaves) – 1.3.0<br>Abanista User Attributes: by Abanista Dev – 1.3.5<br>Abanista WC Warranty - Client REST API: by The Abanista Team – 0.3.0<br>Abanista Widget Visibility: by Abanista / You – 1.2.0<br>Abanista Wishlist & Notifications: by Abanista Dev Team – 0.9.3<br>AutomateWoo: by WooCommerce – 6.1.15<br>Brevo - Email, SMS, Web Push, Chat, and more.: by Brevo – 3.2.9<br>Code Snippets: by Code Snippets Pro – 3.9.2<br>Coupon Affiliates for WooCommerce: by Elliot Sowersby<br>RelyWP – 7.2.1<br><br>Customer Reviews for WooCommerce: by CusRev – 5.89.0<br>Facebook for WooCommerce: by Facebook – 3.5.14<br>FiboFilters: by FiboFilters Team – 1.9.0<br>FiboSearch - AJAX Search for WooCommerce (Pro): by FiboSearch Team – 1.30.1<br>Google Analytics for WooCommerce: by WooCommerce – 2.1.19<br>Google for WooCommerce: by WooCommerce – 3.5.0<br>Heateor Social Login: by Team Heateor – 1.1.39<br>JWT Authentication for WP-API: by Enrique Chavez – 1.4.1<br>LiteSpeed Cache: by LiteSpeed Technologies – 7.6.2<br>PDF Invoices & Packing Slips for WooCommerce: by WP Overnight – 4.9.1<br>PWA: by PWA Plugin Contributors – 0.8.2<br>Rank Math SEO: by Rank Math SEO – 1.0.258<br>Rich Shortcodes for Google Reviews: by RichPlugins <[email protected]> – 6.7<br>Storefront Blog Customiser: by WooCommerce – 1.3.0<br>Storefront Footer Bar: by WooThemes – 1.0.4<br>Storefront Hamburger Menu: by WooCommerce – 1.2.2<br>Storefront Mega Menus: by WooCommerce – 1.6.2<br>Storefront Parallax Hero: by WooCommerce – 1.5.7<br>Storefront Powerpack: by WooCommerce – 1.6.3<br>Storefront Top Bar: by Wooassist – 1.2.0<br>TeraWallet: by StandaloneTech – 1.5.14<br>Variation Swatches for WooCommerce: by CartFlows – 1.0.13<br>WebToffee WooCommerce PDF Invoices, Packing Slips, Delivery Notes and Shipping Labels: by WebToffee – 4.8.8<br>WooCommerce Deposits: by WooCommerce – 2.3.9<br>WooCommerce Product Add-Ons: by Woo – 7.9.1<br>WooCommerce Product Bundles: by Woo – 8.4.2<br>WooCommerce Product Vendors: by WooCommerce – 2.4.7<br>WooCommerce Warranty Requests: by WooCommerce – 2.6.7<br>WPC Linked Variation for WooCommerce (Premium): by WPClever – 4.3.7<br>WP ERP: by weDevs – 1.16.6<br><br>### Dropin Plugins () ###<br><br>object-cache.php: LiteSpeed Cache - Object Cache (Drop-in)<br><br>### Settings ###<br><br>Legacy API Enabled: –<br>Force SSL: –<br>Currency: UGX (UGX)<br>Currency Position: left_space<br>Thousand Separator: ,<br>Decimal Separator: .<br>Number of Decimals: 0<br>Taxonomies: Product Types: bundle (bundle)<br>external (external)<br>grouped (grouped)<br>simple (simple)<br>variable (variable)<br>woosb (woosb)<br><br>Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog)<br>exclude-from-search (exclude-from-search)<br>featured (featured)<br>outofstock (outofstock)<br>rated-1 (rated-1)<br>rated-2 (rated-2)<br>rated-3 (rated-3)<br>rated-4 (rated-4)<br>rated-5 (rated-5)<br><br>Connected to WooCommerce.com: ✔<br>Enforce Approved Product Download Directories: –<br>HPOS feature enabled: ✔<br>Order datastore: Automattic\WooCommerce\Internal\DataStores\Orders\OrdersTableDataStore<br>HPOS data sync enabled: ✔<br>Enabled Features: analytics<br>marketplace<br>order_attribution<br>site_visibility_badge<br>remote_logging<br>custom_order_tables<br><br><br>### Logging ###<br><br>Enabled: ✔<br>Handler: Automattic\WooCommerce\Internal\Admin\Logging\LogHandlerFileV2<br>Retention period: 30 days<br>Level threshold: –<br>Log directory size: 38 MB<br><br>### WC Pages ###<br><br>Shop base: #9 - /shop/<br>Cart: #10 - /cart/ -  Contains the woocommerce/cart block<br>Checkout: #11 - /checkout/ -  Contains the woocommerce/checkout block<br>My account: #12 - /my-account/ -  Contains the &#091;woocommerce_my_account] shortcode<br>Terms and conditions: #43 - /terms-conditions/terms-of-sale/<br><br>### Theme ###<br><br>Name: Abanista<br>Version: 1.0.1713589360<br>Author URL: https://www.abanista.com/<br>Child Theme: ✔<br>Parent Theme Name: Storefront<br>Parent Theme Version: 4.6.1<br>Parent Theme Author URL: https://woocommerce.com/<br>Theme type: Classic theme<br>WooCommerce Support: ✔<br><br>### Templates ###<br><br>Overrides: –<br><br>### Admin ###<br><br>Enabled Features: activity-panels<br>analytics<br>product-block-editor<br>coupons<br>core-profiler<br>customize-store<br>customer-effort-score-tracks<br>import-products-task<br>experimental-fashion-sample-products<br>shipping-smart-defaults<br>shipping-setting-tour<br>homescreen<br>marketing<br>mobile-app-banner<br>onboarding<br>onboarding-tasks<br>pattern-toolkit-full-composability<br>product-custom-fields<br>remote-inbox-notifications<br>remote-free-extensions<br>payment-gateway-suggestions<br>printful<br>shipping-label-banner<br>subscriptions<br>store-alerts<br>transient-notices<br>woo-mobile-welcome<br>wc-pay-promotion<br>wc-pay-welcome-page<br>launch-your-store<br><br>Disabled Features: product-data-views<br>experimental-blocks<br>experimental-iapi-mini-cart<br>experimental-iapi-runtime<br>coming-soon-newsletter-template<br>minified-js<br>product-pre-publish-modal<br>settings<br>async-product-editor-category-field<br>product-editor-template-system<br>use-wp-horizon<br>rest-api-v4<br><br>Daily Cron: ✔ Next scheduled: 2025-11-25 00:10:55 +03:00<br>Options: ✔<br>Notes: 234<br>Onboarding: completed<br><br>### Action Scheduler ###<br><br>Canceled: 3<br>Oldest: 2025-11-20 00:47:55 +0300<br>Newest: 2025-11-20 01:10:41 +0300<br><br>Complete: 104,932<br>Oldest: 2025-10-24 09:41:39 +0300<br>Newest: 2025-11-24 09:19:04 +0300<br><br>Failed: 2,894<br>Oldest: 2025-10-26 21:49:46 +0300<br>Newest: 2025-11-24 09:26:09 +0300<br><br>Pending: 27<br>Oldest: 2025-11-24 09:28:09 +0300<br>Newest: 2025-12-08 01:23:29 +0300<br><br><br>### Status report information ###<br><br>Generated at: 2025-11-24 09:26:51 +03:00<br>
Viewing 15 replies - 1 through 15 (of 34 total)
  • Thread Starter acsafrica

    (@acsafrica)

    Point of correction. It is the command out of sync that leads to the jumping of the usage spikes. before that the resource usage is like about 20 percent but once that error comes it jumps and site becomes inaccessible

    Thread Starter acsafrica

    (@acsafrica)

    The logs below were logged when woocommerce is the only active plugin on site, store front child the active theme as per the system report i shared above

    [24-Nov-2025 06:19:00 UTC] PHP Warning:  Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 06:19:00 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 06:19:00 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 06:19:00 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 06:19:00 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 06:19:00 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 06:19:00 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 06:19:00 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 06:19:00 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 06:19:00 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 06:22:57 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 06:22:57 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 06:22:57 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 06:22:57 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 06:25:48 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 06:25:48 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 06:25:48 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 06:25:48 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 06:25:48 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 06:25:48 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 06:25:48 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 06:25:48 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 06:25:48 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 06:25:48 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 06:40:13 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 06:40:13 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 06:40:13 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 06:40:13 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 07:11:55 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 07:11:55 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 07:11:55 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 07:11:55 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 07:57:16 UTC] Cron reschedule event error for hook: automatewoo_two_days_worker, Error code: invalid_schedule, Error message: Event schedule does not exist., Data: {"schedule":"automatewoo_two_days","args":[],"interval":172800}
    [24-Nov-2025 07:58:19 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 07:58:19 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 07:58:19 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 07:58:19 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 07:58:19 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 07:58:19 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 07:58:19 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 07:58:19 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 07:58:19 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 07:58:19 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:04:23 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:04:23 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:04:23 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:04:23 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:04:23 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:04:23 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:04:23 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:04:23 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:04:23 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:04:23 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:12:06 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:12:06 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:12:06 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:12:06 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:12:06 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:12:06 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:12:06 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:12:06 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:12:06 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:12:06 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:19:34 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 08:19:34 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO
    wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_43e0990d4548d7a075bf95407bebf3', 'a:7:{s:22:\"shipping_for_package_0\";s:2766:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_08f1de371a220f328446281da8e1e9c7\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:171:\"Geepas Hi-Fi Speaker with UHF Mic &amp; Remote | USB &amp; BT | GMS11153 | With TF, FM and TWS Functions | Includes Aux/Guitar and MIC Input | 2 * 12\" DJ Speaker &times; 2\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5500\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:171:\"Geepas Hi-Fi Speaker with UHF Mic &amp; Remote | USB &amp; BT | GMS11153 | With TF, FM and TWS Functions | Includes Aux/Guitar and MIC Input | 2 * 12\" DJ Speaker &times; 2\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:171:\"Geepas Hi-Fi Speaker with UHF Mic &amp; Remote | USB &amp; BT | GMS11153 | With TF, FM and TWS Functions | Includes Aux/Guitar and MIC Input | 2 * 12\" DJ Speaker &times; 2\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:171:\"Geepas Hi-Fi Speaker with UHF Mic &amp; Remote | USB &amp; BT | GMS11153 | With TF, FM and TWS Functions | Includes Aux/Guitar and MIC Input | 2 * 12\" DJ Speaker &times; 2\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:405:\"a:15:{s:8:\"subtotal\";s:7:\"2100000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"2100000\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"2100000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:423:\"a:1:{s:32:\"87355b7f60f29ecb7a50a7f5c1d67ff8\";a:11:{s:3:\"key\";s:32:\"87355b7f60f29ecb7a50a7f5c1d67ff8\";s:10:\"product_id\";i:80032;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:2100000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2100000;s:8:\"line_tax\";d:0;}}\";s:10:\"wc_notices\";s:706:\"a:1:{s:7:\"success\";a:2:{i:0;a:2:{s:6:\"notice\";s:291:\"&ldquo;Geepas Hi-Fi Speaker with UHF Mic &amp; Remote | USB &amp; BT | GMS11153 | With TF, FM and TWS Functions | Includes Aux/Guitar and MIC Input | 2 * 12&#8243; DJ Speaker&rdquo; has been added to your cart. <a href=\"https://www.abanista.com/cart/\" class=\"button wc-forward\">View cart</a>\";s:4:\"data\";a:0:{}}i:1;a:2:{s:6:\"notice\";s:291:\"&ldquo;Geepas Hi-Fi Speaker with UHF Mic &amp; Remote | USB &amp; BT | GMS11153 | With TF, FM and TWS Functions | Includes Aux/Guitar and MIC Input | 2 * 12&#8243; DJ Speaker&rdquo; has been added to your cart. <a href=\"https://www.abanista.com/cart/\" class=\"button wc-forward\">View cart</a>\";s:4:\"data\";a:0:{}}}}\";}', 1764145173)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 08:30:45 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:30:45 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:30:45 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:30:45 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:30:45 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:30:45 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:30:45 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:30:45 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:30:45 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:30:45 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 08:53:43 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 08:55:26 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 09:09:59 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:09:59 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:09:59 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:09:59 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:09:59 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:09:59 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:09:59 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:09:59 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:09:59 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:09:59 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:13:46 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:13:46 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:13:46 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:13:46 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:13:46 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:13:46 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:13:46 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:13:46 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:13:46 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:13:46 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:17:13 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:17:13 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:17:13 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:17:13 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:17:13 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:17:13 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:17:13 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:17:13 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:17:13 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:17:13 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:18:07 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 09:34:14 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:34:14 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:34:14 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:34:14 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:37:33 UTC] Automatic updates starting...
    [24-Nov-2025 09:37:34 UTC] Automatic plugin updates starting...
    [24-Nov-2025 09:37:34 UTC] Automatic plugin updates complete.
    [24-Nov-2025 09:37:34 UTC] Automatic updates complete.
    [24-Nov-2025 09:43:21 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 09:51:15 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:51:15 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:51:15 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:51:15 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:51:15 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:51:15 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:51:15 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:51:15 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:51:15 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:51:15 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:56:04 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:56:04 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:56:04 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:56:04 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:56:04 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:56:04 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:56:04 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:56:04 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:56:04 UTC] PHP Warning: Undefined array key "width" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 09:56:04 UTC] PHP Warning: Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    Thread Starter acsafrica

    (@acsafrica)

    i also have this notice for days

    Thumbnail regeneration is running in the background. Depending on the amount of images in your store this may take a while.

    I am having the exaxt same issue and have a ticket here. https://ww.wp.xz.cn/support/topic/woocommerce-slowing-site-crashing/#post-18730374

    After decativating WC it seems to take a day or two before everything slows up again, then have to rince andn repeat the deactivation of everythig and WC. The issue occurs on WC version 10.22 and 10.35. I thought rolling back would solve the issue but it does not.

    • This reply was modified 4 months, 3 weeks ago by pappaclart.
    Plugin Support shahzeen(woo-hc)

    (@shahzeenfarooq)

    Hi @acsafrica

    Thank you for sharing the issue in details. I have tried to replicate that issue on my test site but not able to replicate that issue on my end.

    From the errors you provided, here’s what I can see: 🔸 1. “Undefined array key ‘width’ / ‘height’” warnings

    These warnings usually appear when an image is being processed but WordPress cannot detect its dimensions.
    Common causes include:

    • A plugin or custom code modifying image metadata
    • An image being missing or corrupted
    • A theme or plugin calling wp_get_attachment_image_src() without passing complete data

    These are not directly related to WooCommerce, but they can affect image loading on the site.

    Regarding the “Commands out of sync” issue, this error usually appears due to a plugin conflict. Since you have already deactivated all plugins and are still experiencing the issue,

    To assist you better, could you please create a staging site? You can use the following plugin to create one: WP Staging.

    Once the staging site is ready, keep all plugins deactivated, reinstall WooCommerce, and then install the WooCommerce Analytics plugin. Check if the “Commands out of sync” message still appears.

    Let us know what you find.

    Plugin Support shahzeen(woo-hc)

    (@shahzeenfarooq)

    Hi @pappaclart,

    To assist you better, could you please reply to the ticket you created so that we can investigate further and help you accordingly?

    I already have. Thanks

    • This reply was modified 4 months, 3 weeks ago by pappaclart.
    Plugin Support shahzeen(woo-hc)

    (@shahzeenfarooq)

    Hi @pappaclart

    That’s great, let’s continue our troubleshooting there. We have also discussed this issue internally with our team, and if we find anything, we will inform you further.

    Thread Starter acsafrica

    (@acsafrica)

    [24-Nov-2025 10:23:00 UTC] PHP Warning:  Undefined array key "height" in /home/abanista/public_html/wp-includes/media.php on line 809
    [24-Nov-2025 10:24:54 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:24:54 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO
    wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_3b69d05691cc0dcb416dd14adee51f', 'a:6:{s:22:\"shipping_for_package_0\";s:2607:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_d4d166474a254704ca37e9947e3865b5\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:131:\"Hisense 32-inch Class A4 Series (32Q4QS) Full HD Smart LED TV; VIDAA OS, Built-in Wi-Fi, Dolby Atmos, Free to Air Decoder &times; 2\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"20500\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:131:\"Hisense 32-inch Class A4 Series (32Q4QS) Full HD Smart LED TV; VIDAA OS, Built-in Wi-Fi, Dolby Atmos, Free to Air Decoder &times; 2\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:131:\"Hisense 32-inch Class A4 Series (32Q4QS) Full HD Smart LED TV; VIDAA OS, Built-in Wi-Fi, Dolby Atmos, Free to Air Decoder &times; 2\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:131:\"Hisense 32-inch Class A4 Series (32Q4QS) Full HD Smart LED TV; VIDAA OS, Built-in Wi-Fi, Dolby Atmos, Free to Air Decoder &times; 2\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:402:\"a:15:{s:8:\"subtotal\";s:6:\"980000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"980000\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"980000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:421:\"a:1:{s:32:\"abe1f87b60e4b5d2798c7bad84b1905e\";a:11:{s:3:\"key\";s:32:\"abe1f87b60e4b5d2798c7bad84b1905e\";s:10:\"product_id\";i:15481;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:980000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:980000;s:8:\"line_tax\";d:0;}}\";}', 1764152689)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:40:16 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:40:16 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_329f4acc3a542d94fb57b3d9cd913a', 'a:6:{s:22:\"shipping_for_package_0\";s:1914:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_9a9431011df5d6a797e9d09f26e96023\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:68:\"Geepas Rechargeable Led Emergency Lantern Orange - Gse5589 &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:68:\"Geepas Rechargeable Led Emergency Lantern Orange - Gse5589 &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:68:\"Geepas Rechargeable Led Emergency Lantern Orange - Gse5589 &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:405:\"a:15:{s:8:\"subtotal\";s:6:\"100000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"5000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"100000\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"105000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:421:\"a:1:{s:32:\"e8bc152a87cbc84b954fb8d7d2220554\";a:11:{s:3:\"key\";s:32:\"e8bc152a87cbc84b954fb8d7d2220554\";s:10:\"product_id\";i:80056;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:100000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:100000;s:8:\"line_tax\";d:0;}}\";}', 1764153615)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:47:57 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:47:57 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT option_value FROM wp_options WHERE option_name = 'wc_pending_batch_processes' LIMIT 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->get_enqueued_processors, get_option
    [24-Nov-2025 10:47:57 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_b2a567fd8aa3c3abc29824c1d9a548', 'a:6:{s:22:\"shipping_for_package_0\";s:2022:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_ab1cc7213ba9ef0319cba71175fdcff8\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:96:\"BlueFlame Cooker, 60x60cm, Full Electric, 4 Hotplates with Electric Oven +Timer, S6004 &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:96:\"BlueFlame Cooker, 60x60cm, Full Electric, 4 Hotplates with Electric Oven +Timer, S6004 &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:96:\"BlueFlame Cooker, 60x60cm, Full Electric, 4 Hotplates with Electric Oven +Timer, S6004 &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:424:\"a:15:{s:8:\"subtotal\";s:7:\"1200000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"5000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:1:{i:1;d:0;}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1200000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1205000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"ef16f85d57ae98d42c488da6f0a0b6d4\";a:11:{s:3:\"key\";s:32:\"ef16f85d57ae98d42c488da6f0a0b6d4\";s:10:\"product_id\";i:58050;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1200000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1200000;s:8:\"line_tax\";d:0;}}\";}', 1764154077)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:48:08 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:48:08 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:48:46 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:48:46 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:49:02 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:49:02 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:49:25 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:49:25 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:49:29 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:49:29 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:49:38 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:49:38 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_298df9937cd8d6ea24b4d9497c358a', 'a:6:{s:22:\"shipping_for_package_0\";s:2282:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_935cc58caa825c04fe4281296be2279f\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:45:\"Moulinex Chopper, 1L Bowl, DJ603127 &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:45:\"Moulinex Chopper, 1L Bowl, DJ603127 &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:45:\"Moulinex Chopper, 1L Bowl, DJ603127 &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:45:\"Moulinex Chopper, 1L Bowl, DJ603127 &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:410:\"a:15:{s:8:\"subtotal\";s:6:\"250000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"250000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"250000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:437:\"a:1:{s:32:\"2ebb6c06bdc16ef37ec965c6b325b5c6\";a:11:{s:3:\"key\";s:32:\"2ebb6c06bdc16ef37ec965c6b325b5c6\";s:10:\"product_id\";i:15294;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:250000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:250000;s:8:\"line_tax\";d:0;}}\";}', 1764154178)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:49:39 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:49:39 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:50:08 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:50:08 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:50:42 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:50:42 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:50:51 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:50:51 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:50:58 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:50:58 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_03080edb7ada477f094bd984e68b5b', 'a:7:{s:22:\"shipping_for_package_0\";s:2140:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_80dc9eaff4387163f31b54a8f79d1936\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"10000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:134:\"IQRA 60x60cm Cooker, 2 Gas Burners and 2 Hotplates, Auto Ignition, Black, Electric Oven and Grill, Rotisserie, IQ-FC6221-BLK &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:134:\"IQRA 60x60cm Cooker, 2 Gas Burners and 2 Hotplates, Auto Ignition, Black, Electric Oven and Grill, Rotisserie, IQ-FC6221-BLK &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:134:\"IQRA 60x60cm Cooker, 2 Gas Burners and 2 Hotplates, Auto Ignition, Black, Electric Oven and Grill, Rotisserie, IQ-FC6221-BLK &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:425:\"a:15:{s:8:\"subtotal\";s:7:\"1395000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:5:\"10000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:1:{i:1;d:0;}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1395000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1405000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"07d8be4e98fe2f96153d2e43b791d4ea\";a:11:{s:3:\"key\";s:32:\"07d8be4e98fe2f96153d2e43b791d4ea\";s:10:\"product_id\";i:16037;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1395000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1395000;s:8:\"line_tax\";d:0;}}\";s:10:\"wc_notices\";s:323:\"a:1:{s:7:\"success\";a:1:{i:0;a:2:{s:6:\"notice\";s:248:\"&ldquo;IQRA 60x60cm Cooker, 2 Gas Burners and 2 Hotplates, Auto Ignition, Black, Electric Oven and Grill, Rotisserie, IQ-FC6221-BLK&rdquo; has been added to your cart. <a href=\"https://www.abanista.com/cart/\" class=\"button wc-forward\">View cart</a>\";s:4:\"data\";a:0:{}}}}\";}', 1764154258)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:51:04 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:51:04 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:51:09 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:51:09 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:51:21 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:51:21 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:51:31 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:51:31 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:51:35 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:51:35 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_3a94fb1f2d5a6f0b7ec644bc183834', 'a:6:{s:22:\"shipping_for_package_0\";s:2014:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_cb21a5ef10d43b3bbaa43dc3c90e33bb\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"20000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:100:\"Hisense 50-inch 4K UHD Smart TV, 50A6Q; Built-in Wi-Fi, HDR, Dolby Atmos, VIDAA, Bluetooth &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:100:\"Hisense 50-inch 4K UHD Smart TV, 50A6Q; Built-in Wi-Fi, HDR, Dolby Atmos, VIDAA, Bluetooth &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:100:\"Hisense 50-inch 4K UHD Smart TV, 50A6Q; Built-in Wi-Fi, HDR, Dolby Atmos, VIDAA, Bluetooth &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:409:\"a:15:{s:8:\"subtotal\";s:7:\"1150000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:5:\"20000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1150000\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1170000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:423:\"a:1:{s:32:\"6d751d6eda13ad8c6b07ec45305a06a8\";a:11:{s:3:\"key\";s:32:\"6d751d6eda13ad8c6b07ec45305a06a8\";s:10:\"product_id\";i:14256;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1150000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1150000;s:8:\"line_tax\";d:0;}}\";}', 1764154295)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:51:37 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:51:37 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_0a9788808a80fe176f0cf63c78fb1f', 'a:6:{s:22:\"shipping_for_package_0\";s:2080:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_bbf2805d338311dedf80de725853c95e\";s:5:\"rates\";a:3:{s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"10000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:114:\"LG 13KG Twin Tub (Top Load Semi Automatic) Washer, Roller Jet, 3 Wash Programs, Wind Jet Dry, P1761RWNBL &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:114:\"LG 13KG Twin Tub (Top Load Semi Automatic) Washer, Roller Jet, 3 Wash Programs, Wind Jet Dry, P1761RWNBL &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:114:\"LG 13KG Twin Tub (Top Load Semi Automatic) Washer, Roller Jet, 3 Wash Programs, Wind Jet Dry, P1761RWNBL &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:98:\"a:1:{i:0;a:3:{i:0;s:12:\"flat_rate:20\";i:1;s:17:\"pickup_location:0\";i:2;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:30:\"a:1:{i:0;s:12:\"flat_rate:20\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:3;}\";s:11:\"cart_totals\";s:425:\"a:15:{s:8:\"subtotal\";s:7:\"1550000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:5:\"10000\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:1:{i:1;d:0;}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"1550000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"1560000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"370ffa32cc1f08b7ad5f2405f126429a\";a:11:{s:3:\"key\";s:32:\"370ffa32cc1f08b7ad5f2405f126429a\";s:10:\"product_id\";i:19660;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:1550000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:1550000;s:8:\"line_tax\";d:0;}}\";}', 1764154297)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:51:45 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:51:45 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:52:16 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:52:16 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:52:17 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:52:17 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:53:26 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:53:26 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:53:59 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:53:59 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:54:06 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:54:06 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_c5285f77ef62442c19f89653af5cd0', 'a:6:{s:22:\"shipping_for_package_0\";s:2338:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_19bffe28cabed3d5a252ba69de1c0180\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:59:\"Standard Bathroom Accessories Set 7 Pieces Chrome &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:59:\"Standard Bathroom Accessories Set 7 Pieces Chrome &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:59:\"Standard Bathroom Accessories Set 7 Pieces Chrome &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:59:\"Standard Bathroom Accessories Set 7 Pieces Chrome &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:410:\"a:15:{s:8:\"subtotal\";s:6:\"320000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"320000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"320000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:437:\"a:1:{s:32:\"e06d7f49ca9995584b4c2ffeb55eb5b7\";a:11:{s:3:\"key\";s:32:\"e06d7f49ca9995584b4c2ffeb55eb5b7\";s:10:\"product_id\";i:77638;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:320000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:320000;s:8:\"line_tax\";d:0;}}\";}', 1764154445)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:54:21 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:54:21 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_615ce9ff3d6c313753f26b8afe09a4', 'a:6:{s:22:\"shipping_for_package_0\";s:2338:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_19bffe28cabed3d5a252ba69de1c0180\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:59:\"Standard Bathroom Accessories Set 7 Pieces Chrome &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:59:\"Standard Bathroom Accessories Set 7 Pieces Chrome &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:59:\"Standard Bathroom Accessories Set 7 Pieces Chrome &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:59:\"Standard Bathroom Accessories Set 7 Pieces Chrome &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:410:\"a:15:{s:8:\"subtotal\";s:6:\"320000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"320000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"320000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:437:\"a:1:{s:32:\"e06d7f49ca9995584b4c2ffeb55eb5b7\";a:11:{s:3:\"key\";s:32:\"e06d7f49ca9995584b4c2ffeb55eb5b7\";s:10:\"product_id\";i:77638;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:320000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:320000;s:8:\"line_tax\";d:0;}}\";}', 1764154461)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:54:23 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:54:23 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:54:40 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:54:40 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:54:58 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:54:58 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_2ae3cd84e245ef73a4640dee0a166b', 'a:7:{s:22:\"shipping_for_package_0\";s:2454:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_d745f5b73fefe979303fd85f59e5ecb0\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:88:\"Kenwood Rice Cooker with Steamer, Stainless Steel, 1.8 Litre, 650 Watt | RCM44 &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:4:\"5000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:88:\"Kenwood Rice Cooker with Steamer, Stainless Steel, 1.8 Litre, 650 Watt | RCM44 &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:88:\"Kenwood Rice Cooker with Steamer, Stainless Steel, 1.8 Litre, 650 Watt | RCM44 &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:88:\"Kenwood Rice Cooker with Steamer, Stainless Steel, 1.8 Litre, 650 Watt | RCM44 &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:410:\"a:15:{s:8:\"subtotal\";s:6:\"255000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"255000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"255000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:437:\"a:1:{s:32:\"a47878d8262fec7042a338488ccb1b4a\";a:11:{s:3:\"key\";s:32:\"a47878d8262fec7042a338488ccb1b4a\";s:10:\"product_id\";i:28208;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:255000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:255000;s:8:\"line_tax\";d:0;}}\";s:10:\"wc_notices\";s:277:\"a:1:{s:7:\"success\";a:1:{i:0;a:2:{s:6:\"notice\";s:202:\"&ldquo;Kenwood Rice Cooker with Steamer, Stainless Steel, 1.8 Litre, 650 Watt | RCM44&rdquo; has been added to your cart. <a href=\"https://www.abanista.com/cart/\" class=\"button wc-forward\">View cart</a>\";s:4:\"data\";a:0:{}}}}\";}', 1764154498)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:54:58 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:54:58 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_aa1ab8ed1bfdb3f2b1e4ff0f74960a', 'a:6:{s:22:\"shipping_for_package_0\";s:2295:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_8d9d7d33f594385e8a70e12e0f276d33\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:54:\"ADH 98 Litre 2-Door Top Freezer Refrigerator &times; 1\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"20000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:54:\"ADH 98 Litre 2-Door Top Freezer Refrigerator &times; 1\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:54:\"ADH 98 Litre 2-Door Top Freezer Refrigerator &times; 1\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:54:\"ADH 98 Litre 2-Door Top Freezer Refrigerator &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:402:\"a:15:{s:8:\"subtotal\";s:6:\"650000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"650000\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"650000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:421:\"a:1:{s:32:\"379d08c7a38df48c777c07ea990a3bcf\";a:11:{s:3:\"key\";s:32:\"379d08c7a38df48c777c07ea990a3bcf\";s:10:\"product_id\";i:15440;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:650000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:650000;s:8:\"line_tax\";d:0;}}\";}', 1764154497)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:54:58 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:55:26 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:55:26 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_28959848f5732f378a32289222a785', 'a:7:{s:22:\"shipping_for_package_0\";s:2443:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_0909b0f7656c1da47e18bf957a89ee59\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:85:\"Bosch 6 kg Automatic Front Load Washing Machine, 1000RPM, Inox (WAB2026SKE) &times; 2\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"10500\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:85:\"Bosch 6 kg Automatic Front Load Washing Machine, 1000RPM, Inox (WAB2026SKE) &times; 2\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:85:\"Bosch 6 kg Automatic Front Load Washing Machine, 1000RPM, Inox (WAB2026SKE) &times; 2\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:1:{i:1;d:0;}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:85:\"Bosch 6 kg Automatic Front Load Washing Machine, 1000RPM, Inox (WAB2026SKE) &times; 2\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:413:\"a:15:{s:8:\"subtotal\";s:7:\"3600000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"3600000\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:1:{i:1;d:0;}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"3600000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:439:\"a:1:{s:32:\"821fc6911dba0d124d68dd77901923d6\";a:11:{s:3:\"key\";s:32:\"821fc6911dba0d124d68dd77901923d6\";s:10:\"product_id\";i:17481;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:0;}s:5:\"total\";a:1:{i:1;d:0;}}s:13:\"line_subtotal\";d:3600000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:3600000;s:8:\"line_tax\";d:0;}}\";s:10:\"wc_notices\";s:522:\"a:1:{s:7:\"success\";a:2:{i:0;a:2:{s:6:\"notice\";s:199:\"&ldquo;Bosch 6 kg Automatic Front Load Washing Machine, 1000RPM, Inox (WAB2026SKE)&rdquo; has been added to your cart. <a href=\"https://www.abanista.com/cart/\" class=\"button wc-forward\">View cart</a>\";s:4:\"data\";a:0:{}}i:1;a:2:{s:6:\"notice\";s:199:\"&ldquo;Bosch 6 kg Automatic Front Load Washing Machine, 1000RPM, Inox (WAB2026SKE)&rdquo; has been added to your cart. <a href=\"https://www.abanista.com/cart/\" class=\"button wc-forward\">View cart</a>\";s:4:\"data\";a:0:{}}}}\";}', 1764154498)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:55:37 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:55:37 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:55:58 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [24-Nov-2025 10:55:58 UTC] WordPress database error Commands out of sync; you can't run this command now for query SHOW FULL COLUMNS FROM wp_woocommerce_sessions made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [24-Nov-2025 10:56:04 UTC] WordPress database er

    the above errors happened when only woocommerce is active and all other plugins inactive

    Thread Starter acsafrica

    (@acsafrica)

    i have created a staging using the advised plugin and its here

    Staging Site Created Successfully!

    You can access it from here:

    https://www.abanista.com/defiant
    • This reply was modified 4 months, 3 weeks ago by acsafrica.
    • This reply was modified 4 months, 3 weeks ago by acsafrica.
    Plugin Support shahzeen(woo-hc)

    (@shahzeenfarooq)

    Hi there!

    Thank you for creating the staging site. Just to verify, have you tried reinstalling WooCommerce and installing the WooCommerce Analytics plugin: https://ww.wp.xz.cn/plugins/woocommerce-analytics/ on the staging site? Do you still face the same issue after that on staging site?

    Thread Starter acsafrica

    (@acsafrica)

    i have added activated woocommerce on the staging and also added the analytics plugin. the staging seems to be working ok for now.

    Sometimes the problem on the main site doesn’t resurface just after activating woocommerce. it can take sometimes like hours sometimes and just happen once and will persist until you rename the woocommerce folder in cpanel

    Plugin Support shahzeen(woo-hc)

    (@shahzeenfarooq)

    Hi there!

    Since everything is working fine on the staging site, I would suggest keeping all other plugins deactivated except WooCommerce and the Analytics plugin, and monitor if the error appears on the staging site after a few hours.

    In the meantime, if the error does not appear after a few hours on the staging site, I would suggest activating each plugin one by one and monitoring when the “Commands out of sync” error reappears. This will help identify which plugin is causing the conflict.

    Thread Starter acsafrica

    (@acsafrica)

    i have monitored the staging but so far no error has happened. but on the main site, with the same plugin activated and other plugins inactive i am getting these

    [25-Nov-2025 06:48:34 UTC] PHP Notice:  Function _load_textdomain_just_in_time was called <strong>incorrectly</strong>. Translation loading for the <code>woocommerce</code> domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the <code>init</code> action or later. Please see <a href="https://developer.ww.wp.xz.cn/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.7.0.) in /home/abanista/public_html/wp-includes/functions.php on line 6121
    [25-Nov-2025 06:48:34 UTC] WordPress database error Commands out of sync; you can't run this command now for query SELECT a.action_id FROM wp_actionscheduler_actions a WHERE 1=1 AND a.hook='wc_schedule_pending_batch_processes' AND a.status IN ('in-progress', 'pending') LIMIT 0, 1 made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->{closure:Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController::__construct():85}, Automattic\WooCommerce\Internal\BatchProcessing\BatchProcessingController->remove_or_retry_failed_processors, call_user_func, as_has_scheduled_action, ActionScheduler_Store->query_action, ActionScheduler_DBStore->query_actions
    [25-Nov-2025 06:48:34 UTC] WordPress database error Commands out of sync; you can't run this command now for query INSERT INTO
    wp_woocommerce_sessions (session_key, session_value, session_expiry) VALUES ('t_a9352c67075d25b8c93137f8cbcec8', 'a:6:{s:22:\"shipping_for_package_0\";s:2355:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_342c0239632ae43b699534810da66f30\";s:5:\"rates\";a:4:{s:16:\"free_shipping:21\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:16:\"free_shipping:21\";s:9:\"method_id\";s:13:\"free_shipping\";s:11:\"instance_id\";i:21;s:5:\"label\";s:13:\"Free delivery\";s:4:\"cost\";s:1:\"0\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:69:\"Beko 10kg Semi-Automatic Twin Tub Washing Machine, WTT100UK &times; 2\";}}s:12:\"flat_rate:20\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:12:\"flat_rate:20\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:20;s:5:\"label\";s:16:\"Abanista Express\";s:4:\"cost\";s:5:\"10500\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:69:\"Beko 10kg Semi-Automatic Twin Tub Washing Machine, WTT100UK &times; 2\";}}s:17:\"pickup_location:0\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:0\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:30:\"Pickup Location (Kampala City)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:12:\"Kampala City\";s:14:\"pickup_address\";s:72:\"Johnson Street / William Street, Prime Complex, RM C16, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Sat)\";s:5:\"Items\";s:69:\"Beko 10kg Semi-Automatic Twin Tub Washing Machine, WTT100UK &times; 2\";}}s:17:\"pickup_location:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:9:{s:2:\"id\";s:17:\"pickup_location:1\";s:9:\"method_id\";s:15:\"pickup_location\";s:11:\"instance_id\";i:0;s:5:\"label\";s:29:\"Pickup Location (Head Office)\";s:4:\"cost\";s:5:\"15000\";s:5:\"taxes\";a:0:{}s:10:\"tax_status\";s:7:\"taxable\";s:11:\"description\";s:0:\"\";s:13:\"delivery_time\";s:0:\"\";}s:12:\"\0*\0meta_data\";a:4:{s:15:\"pickup_location\";s:11:\"Head Office\";s:14:\"pickup_address\";s:73:\"Namugongo - Bbuto Rd, opp. URA Customs Bonded Warehouse, Kampala, Kampala\";s:14:\"pickup_details\";s:62:\"Package will be ready for pickup with in 1-3 hours (Mon - Fri)\";s:5:\"Items\";s:69:\"Beko 10kg Semi-Automatic Twin Tub Washing Machine, WTT100UK &times; 2\";}}}}\";s:25:\"previous_shipping_methods\";s:126:\"a:1:{i:0;a:4:{i:0;s:16:\"free_shipping:21\";i:1;s:12:\"flat_rate:20\";i:2;s:17:\"pickup_location:0\";i:3;s:17:\"pickup_location:1\";}}\";s:23:\"chosen_shipping_methods\";s:34:\"a:1:{i:0;s:16:\"free_shipping:21\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:4;}\";s:11:\"cart_totals\";s:405:\"a:15:{s:8:\"subtotal\";s:7:\"2600000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:7:\"2600000\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:7:\"2600000\";s:9:\"total_tax\";d:0;}\";s:4:\"cart\";s:423:\"a:1:{s:32:\"296a4a440e3b55ea2556f652bb30dc98\";a:11:{s:3:\"key\";s:32:\"296a4a440e3b55ea2556f652bb30dc98\";s:10:\"product_id\";i:71410;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:2600000;s:17:\"line_subtotal_tax\";d:0;s:10:\"line_total\";d:2600000;s:8:\"line_tax\";d:0;}}\";}', 1764226097)
    ON DUPLICATE KEY UPDATE session_value = VALUES(session_value), session_expiry = VALUES(session_expiry) made by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_data
    [25-Nov-2025 06:48:34 UTC] PHP Notice: Function _load_textdomain_just_in_time was called <strong>incorrectly</strong>. Translation loading for the <code>woocommerce</code> domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the <code>init</code> action or later. Please see <a href="https://developer.ww.wp.xz.cn/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.7.0.) in /home/abanista/public_html/wp-includes/functions.php on line 6121
    [25-Nov-2025 06:48:34 UTC] PHP Notice: Function _load_textdomain_just_in_time was called <strong>incorrectly</strong>. Translation loading for the <code>woocommerce</code> domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the <code>init</code> action or later. Please see <a href="https://developer.ww.wp.xz.cn/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.7.0.) in /home/abanista/public_html/wp-includes/functions.php on line 6121
    [25-Nov-2025 06:48:34 UTC] PHP Deprecated:

    the problematic situation happens when the command out of sync error happens. and site is currently unreachable or becomes too slow because the resource usage has jumped to the peak. The staging site is not undergoing the same load as the main site even if they all have the same plugin installed because the main site has traffic and also we have an app that interacts with the site via the woocommerce storeapi documented here https://developer.woocommerce.com/docs/apis/store-api/. i suspect issue may be coming when user is performing a certain activity on the site or trying to checkout on the website or in the app. i also checked this thread https://ww.wp.xz.cn/support/topic/woocommerce-slowing-site-crashing/#post-18730374 and they are likely facing similar issue and checked as if the other plugins we all have are litespeed cache and webtofee pdf invoices and packing slips. but all these plugins are inactive on the site. the other thing i see is that on the main site i see an notice that has been there for days “Thumbnail regeneration is running in the background. Depending on the amount of images in your store this may take a while.” i dont know if it can be related to the problem bacause that notice is not there on the staging site.

    Hi @acsafrica,

    Thank you for getting back to us. From the error log you shared, these are the issues appearing:

    • A translation loading error, which suggests that WooCommerce or another plugin interacting with WooCommerce is loading translations too early.
    • A “Commands out of sync” error, which usually means a previous MySQL query wasn’t fully completed before another one started. This can affect WooCommerce session storage and ActionScheduler queries.
    • A PHP deprecation notice.

    To better understand what’s happening on your live site, could you let me know your average daily traffic and the number of orders completed each day on the live site?

    I’ve also reviewed the system status report you provided earlier, and both your database and plugin stack appear quite bloated. This includes the Abanista plugins, which is installed multiple times (up to 21), AutomateWoo, and several heavy or overlapping plugins such as Google Analytics for WooCommerce and Google for WooCommerce.

    A key step in troubleshooting will be reducing this bloat by clearing failed actions and cleaning up stored sessions, especially since your database is very large. This may be due to the number of data-intensive plugins installed.

    Your database details are:

    • Total size: 1316.50 MB
    • Data size: 707.67 MB
    • Index size: 608.83 MB

    Before we move forward, please confirm your live site’s traffic and daily order volume. This information will help explain why the issue isn’t appearing on your staging site.

Viewing 15 replies - 1 through 15 (of 34 total)

You must be logged in to reply to this topic.