High Resource Usage & “Commands Out of Sync” Errors
-
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 mydebug.logfile, which ultimately cripples the site.My Troubleshooting Steps:
To isolate the cause, I have performed extensive testing with the following results:- Deactivated All Plugins Except WooCommerce: The problem still occurs.
- Reactivated All Other Plugins: The problem is absent until a certain point, after which it triggers.
- Deactivated WooCommerce: The problem completely disappears. The site runs smoothly with all other plugins active.
- Changed Theme: I switched from my custom
storefront-childtheme 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 persecondstimeframe
'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 INTOwp_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 × 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 × 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 × 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 UPDATEsession_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->do_action, WP_Hook->apply_filters, storefront_page_content, the_content, apply_filters('the_content'), WP_Hook->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->do_action, WP_Hook->apply_filters, add_google_customer_reviews_optin, WC_Data->get_meta, WC_Data->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->do_action, WP_Hook->apply_filters, storefront_page_content, the_content, apply_filters('the_content'), WP_Hook->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->do_action, WP_Hook->apply_filters, add_google_customer_reviews_optin, WC_Data->get_meta, WC_Data->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->do_action, WP_Hook->apply_filters, storefront_page_content, the_content, apply_filters('the_content'), WP_Hook->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->do_action, WP_Hook->apply_filters, add_google_customer_reviews_optin, WC_Data->get_meta, WC_Data->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->do_action, WP_Hook->apply_filters, storefront_page_content, the_content, apply_filters('the_content'), WP_Hook->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->do_action, WP_Hook->apply_filters, add_google_customer_reviews_optin, WC_Data->get_meta, WC_Data->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->do_action, WP_Hook->apply_filters, storefront_page_content, the_content, apply_filters('the_content'), WP_Hook->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->do_action, WP_Hook->apply_filters, add_google_customer_reviews_optin, WC_Data->get_meta, WC_Data->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->do_action, WP_Hook->apply_filters, storefront_page_content, the_content, apply_filters('the_content'), WP_Hook->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->do_action, WP_Hook->apply_filters, add_google_customer_reviews_optin, WC_Data->get_meta, WC_Data->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 INTOwp_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 & Cold Antibacterial topper & Cup - Perfect for Outdoor Sports, Fitness, Camping, Hiking, Office, School. × 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 & Cold Antibacterial topper & Cup - Perfect for Outdoor Sports, Fitness, Camping, Hiking, Office, School. × 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 & Cold Antibacterial topper & Cup - Perfect for Outdoor Sports, Fitness, Camping, Hiking, Office, School. × 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 UPDATEsession_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 INTOwp_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 × 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 × 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 × 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 UPDATEsession_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 FROMwp_woocommerce_sessionsmade 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 INTOwp_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 × 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 × 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 × 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 × 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 UPDATEsession_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 FROMwp_woocommerce_sessionsmade 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 INTOwp_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 × 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 × 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 × 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 UPDATEsession_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 INTOwp_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 × 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 × 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 × 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 UPDATEsession_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 INTOwp_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 × 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 × 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 × 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:\"“LG 43-inch FHD Smart LED TV w/ Free-To-Air Decoder” 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 UPDATEsession_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 INTOwp_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) × 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) × 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) × 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) × 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:\"“Electrolux 528 Litre Side by Side Fridge with Water Dispenser, Inverter Technology (ESE5441A-AME)” 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 UPDATEsession_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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 INTOwp_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 × 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 × 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 × 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:\"“Panasonic Steam Iron, 1800w, (NI-M300TATH) – Blue” 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 UPDATEsession_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 INTOwp_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 × 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 × 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 × 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 × 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:\"“Decakila 220-240V, 1500 Watts, Portable Hot Plate, KECC009M” 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 UPDATEsession_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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 INTOwp_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 × 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 × 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 × 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 UPDATEsession_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 INTOwp_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 × 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 × 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 × 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:\"“LG 43-inch FHD Smart LED TV w/ Free-To-Air Decoder” 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 UPDATEsession_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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 INTOwp_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 UPDATEsession_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 INTOwp_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 × 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 × 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 × 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 UPDATEsession_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 INTOwp_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 × 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 × 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 × 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 × 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 UPDATEsession_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 INTOwp_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 × 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 × 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 × 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 × 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:\"“Samsung 98-inch Class DU9000 Crystal UHD 4K Smart TV, UA98DU9000, 2024” 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 UPDATEsession_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 INTOwp_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 × 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 × 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 × 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 UPDATEsession_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 FROMwp_woocommerce_sessionsmade 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 INTOwp_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 × 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 × 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 × 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 × 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 UPDATEsession_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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 INTOwp_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 × 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 × 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 × 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 UPDATEsession_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 INTOwp_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 × 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 × 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 × 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 × 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:\"“Ariston 9kg Heat Pump Tumble Dryer, Freestanding, NTM119X1SK, White” 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 UPDATEsession_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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 INTOwp_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 × 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 × 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 × 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 × 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 UPDATEsession_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 FROMwp_woocommerce_sessionsmade 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 INTOwp_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 × 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 × 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 × 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 × 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 UPDATEsession_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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 INTOwp_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 × 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 × 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 × 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 × 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 UPDATEsession_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 INTOwp_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 × 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 × 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 × 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 × 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 UPDATEsession_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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 INTOwp_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 × 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 × 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 × 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:\"“Samsung 43-inch Full HD Smart LED TV, UA43F6000F” 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 UPDATEsession_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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 INTOwp_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 × 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 × 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 × 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 UPDATEsession_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 INTOwp_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 × 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 × 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 × 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 × 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 UPDATEsession_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 INTOwp_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 × 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 × 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 × 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 × 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 UPDATEsession_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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 INTOwp_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) × 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) × 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) × 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) × 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:\"“Electrolux 528 Litre Side by Side Fridge with Water Dispenser, Inverter Technology (ESE5441A-AME)” 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 UPDATEsession_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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 INTOwp_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 × 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 × 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 × 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 UPDATEsession_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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 INTOwp_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 × 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 × 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 × 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 × 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 UPDATEsession_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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade 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 FROMwp_woocommerce_sessionsmade by shutdown_action_hook, do_action('shutdown'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Session_Handler->save_dataI 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 [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>
You must be logged in to reply to this topic.