• Resolved GeoffreyCRM

    (@geoffreycrm)


    I have just updated my website to WooCommerce Version 4.9.1. Since this update I have had an issue with updating products and plugins. When I change the text or variations of a product and click update the little wheel spins round until the connection times out and I get the message: There has been a critical error on this website. Please check your site admin email inbox for instructions.

    The same happens when I try to deactivate or delete a plugin – nothing happens and then the connection times out. I have changed from the Storefront theme to others and the same thing happens when I am using these themes.

    The WordPress log says that the issue is with the WooCommerce plugin itself. I have no idea what to do to resolve things other than trying to roll back to an earlier version of WooCommerce which didn’t have this issue.

Viewing 12 replies - 31 through 42 (of 42 total)
  • @designinvento – Thank you so very much for the thread!!! A major problem is that some of us affected by this issue do not know how to edit php files or option tables, etc….and are too scared to try as we’ve never done this before. We need a fix that we can implement with a plug-in. I did try the code snippet suggested earlier above, but unfortunately it gave me this notice on home page (but it did work for others, so it is good!):
    Warning: Invalid argument supplied for foreach() in /home/customer/www/sportswreathshop.com/public_html/wp-content/plugins/woocommerce/packages/woocommerce-admin/src/Loader.php on line 226

    This is just awful for us “stupid” guys….. ?? Has literally shut me down. Guess I’m going to have to pay for a fix – ugh.

    @sportswreathshop would you confirm if this warning appear after implementing code provided by me?

    @designinvento

    Hello! Unfortunately, I am not able to install your code. I don’t know how to edit php files or wp option tables.

    I was trying a code snippet suggestion in the thread that does indeed work for some users, just not my set up.

    Thank you, Catherine

    you can simply put the provided code in your theme or child theme’s functions.php file by editing with any text editor like notepad

    @designinvento Sadly, don’t even know how to do that. Time to find a web article and learn, LOL. Thank you for all your help – I appreciate it.

    ok provide your wp admin details here [email protected]

    Plugin Support Shaun Kuschel a11n

    (@shaunkuschel)

    Automattic Happiness Engineer

    Thanks for the info relating to this issue, everyone. The devs have been made aware and will be looking into this problem. Much appreciated!

    @shaunkuschel,

    Just updated the plugin to 4.9.2 – still not working for me.

    Still can’t update product nor deactivate any plugins – 524 error.

    Thank you, Catherine

    @ck-macleod, @designinvento, @geoffreycrm

    cc: @shaunkuschel

    I want to thank you all for helping me out! I FINALLY got it to work on my system. I ran into the @ck-macleod code snippet fix on GitHub and I’m back in business. Note: 4.9.2 still didn’t solve my problem but this did. Thank you!!!!

    //TEMPORARY BUGFIX FOR WOOCOMMERCE “PHONING HOME” – REMOVE AFTER WOOC FIXES
    add_filter(‘woocommerce_admin_features’, ‘pk_woocommerce_admin_features’);
    function pk_woocommerce_admin_features($features) {
    if(($key = array_search(‘remote-inbox-notifications’, $features)) !== false) {
    unset($features[$key]);
    }
    return $features ;
    }

    Thread Starter GeoffreyCRM

    (@geoffreycrm)

    Good to hear you got it fixed!

    Plugin Support Shaun Kuschel a11n

    (@shaunkuschel)

    Automattic Happiness Engineer

    Thanks for the help and updates regarding this issue, all! The devs are still working on the fix but glad to hear that the snippet helped in the meantime!

    Plugin Support Shaun Kuschel a11n

    (@shaunkuschel)

    Automattic Happiness Engineer

    I’m going to mark this thread as closed for now since the code above seems to be working as a temporary fix. However, the issues on Github are still open, so anyone interested in following along can do at the links below:

    https://github.com/woocommerce/woocommerce-admin/issues/6181
    https://github.com/woocommerce/woocommerce-admin/issues/6189

    Thanks all!

Viewing 12 replies - 31 through 42 (of 42 total)
  • The topic ‘Cannot update products since last update’ is closed to new replies.