Oleg
Forum Replies Created
-
Forum: Plugins
In reply to: [All-In-One Security (AIOS) – Security and Firewall] Block fake GooglebotsHi, I want to inform you the the issue was not related to AIOS at all. The plugin feature works fine.
Thanks for ur feedback.
Forum: Plugins
In reply to: [All-In-One Security (AIOS) – Security and Firewall] Block fake Googlebots‘aiowps_googlebot_ip_ranges’ exists in \wp-content\uploads\aios\firewall-rules\settings.php
Regards,
Forum: Plugins
In reply to: [All-In-One Security (AIOS) – Security and Firewall] Block fake GooglebotsBelow are some log record examples:
66.249.70.138 - - [26/Oct/2025:00:10:30 +0300] "GET /robots.txt HTTP/1.1" 503 45246 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"66.249.70.137 - - [26/Oct/2025:00:10:32 +0300] "GET /product/gel-polish-milano-cosmetic-10ml-261/ HTTP/1.1" 503 44647 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"Regards,
Forum: Plugins
In reply to: [All-In-One Security (AIOS) – Security and Firewall] Block fake GooglebotsYes it does.
P.S. After a month of the feature on, e-commerce website disappeared from the search because all the Google bots were rejected with 503 on all pages. That’s super annoying bug leaded to money lost.
Please fix.
regards,
Forum: Plugins
In reply to: [WooCommerce] Woocommerce 6.9 date issueHello @ucsendre. Unfortunately the workaround doesn’t work. It still subtracts 3 hours from the current time whenever updating an order.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce 6.9 date issueI located that the problem happens whenever updating an order through woocommerce admin. Every time you press update button the current time changes -3 hours.
Dear WooCommerce please check this out.Iryna,
That would be great once the plugin support polylang as well since this is one of most popular plugin used for multilingual wordpress like WPML.
Thanks
Best regards,
OlegI’ve just tried to reinstall ATUM with ‘Delete data when uninstalling’ option enabled and restored prices for all products.
Currently it seems stock value is correct for most categories that I checked.
Best regards,
OlegIryna,
The products are properly assign to problematic categories and these categories not empty.
Please note that products from these categories are availabale in the list on Stock Central page but categories not appear in the dropdown.
Kind regards,
OlegHi Iryna,
Yes I use WP Rocket. Clearing cache and disabling plugin doesn’t help.
If needed I could make screenrecoding for approval 🙂
Kind regards,
OlegDear Iryna,
I tried to deactivate all the wordpress plugins to eliminate compatibility issues but nothing some categories not go for dropdown.
Anything I can do to help you to locate the issue?
Best regards,
OlegHello Joseph,
However, please note that some plugins might cause issues with stock data/status being stored/retained correctly.
Completely agree with you. That’s might be definitely due to some plugin. If I ever figure out which plugin cause issue I’ll come back.
Thank you all for your assistance!
Hello Joseph,
By “re-saving the data for one of the In-Stock products” you mean to open the product edit page and press Update button, right?
I tried this having “Hide out of stock items from the catalog” option On. It doesn’t work. The product in question still hidden.
I managed to get it visible only making product to be featured On / Off either from WooCoommerce > Products page or programatically.
As I wrote in one of previous replies to overcome the issue I turned all products to be featured and back programatically but editing old products leads to the same problem again.
That would be great to figure our the key reason why it happens, what is the difference between normal products and products in question.
Thanks
Hi Igor,
I enabled debug as follows:
define( 'WP_DEBUG', true ); define( 'WP_DEBUG_LOG', true ); define( 'WP_DEBUG_DISPLAY', true ); define( 'SCRIPT_DEBUG', true ); @ini_set( 'display_errors', 1 );There is only one test-log.log in WooCommerce > Status > System Status > Logs which is empty. The same I’m able to see in the directory /wp-content/uploads/wc-logs. /wp-content/uploads/ur-logs directory is empty as well.
Also, I went to live server HTTP error logs, trying to constantly reload the products page with the problematic product and nothing goes for log.
I suppose it might be something wrong with the product data stored in DB leading to the issue.
Any other ideas?
Thank you
Hi there,
I gave a try to run failed / pending tasks, it didn’t help.
I also checked DB records like post_meta.stock, post_meta.stock_status, wc_product_meta_lookup.stock_quantity, wc_product_meta_lookup.stock_status, of problematic products but something suspicious not found.
Worth to mention that the problem concerns old products i.e. created and published a year+ ago. Some of these products when edited become invisible after some time.
Earlier I wrote a snippet (see below) to make all products featured and back in order to overcome the issue but the issue came back again.
$args = array( 'offset' => 0, 'limit' => 300 ); while( ! empty( $products = wc_get_products( $args ) ) ) { foreach ( $products as $product ) { if ( $product->is_featured() ) { $product->set_featured( false ); $product->save(); $product->set_featured( true ); $product->save(); } else { $product->set_featured( true ); $product->save(); $product->set_featured( false ); $product->save(); } } $args['offset'] += 300; }