Viewing 10 replies - 1 through 10 (of 10 total)
  • Same here, getting memory errors..

    Allowed memory size of 2147483648 bytes exhausted (tried to allocate 20480 bytes)

    Downgrading to 2.0.3 works. Thanks!

    Plugin Support mouindi

    (@mouindi)

    @techguysa , @michaelcartersa we have checked the system on our end with this configuration https://prnt.sc/p5XziWARhWTL

    As you can see we didn’t face any such issue.

    Can you please contact us over here so our dev team can assist you with this : https://multivendorx.com/contact-us/

    Looking for your co-operation regarding the same.

    Thread Starter techguysa

    (@techguysa)

    I donno but my ram is like 12gigs and 8 core CPU but Lightspeed cache takes 3 cores etc

    Everything runs fine if you need to know my woocommerce is fully updated and im using the woodmart theme from xtemos.

    mem limit wise its 300mb which works fine per plugin

    https://ibb.co/wBBsFD5 Screen shot 1

    Screen shot 2
    https://ibb.co/fp9S3Td

    Screen shot 3 (Terminal ram usage)
    https://ibb.co/K9FmHkr

    My issue was the critical error not sure the changes you guys made that caused the error.

    filled that contact us from your link as well



    • This reply was modified 1 year, 6 months ago by techguysa.
    Plugin Support mouindi

    (@mouindi)

    Hi @techguysa , I understand that.

    Can you please reach us here https://multivendorx.com/contact-us/, so our dev team can inspect the issue in your site.

    Plugin Support mouindi

    (@mouindi)

    Hi @techguysa , @michaelcartersa Checking in again – have you resolved the issue? We haven’t received any further updates

    Thread Starter techguysa

    (@techguysa)

    no i just didnt update

    worked on the one site not on mine ill try again tonight couldnt figure out what caused the issue i did email you guys but got nothing

    Plugin Support mouindi

    (@mouindi)

    @techguysa, we have sent you the mail already on 21st September https://prnt.sc/22m5lKmbB8NI

    Please check your mailbox.

    Thread Starter techguysa

    (@techguysa)

    hi ive replied with new finidngs your plug in doesnt like my functions.php with custom codes

    3 things in my functions

    1: codes for changing in stock to in stock with suppliers (out of stock and backorder the same

    2: admin page on orders shows the VAT with total so its easy for me to view orders at the correct pricing structure

    3: an alert to tell users at checkout they have a backorder in their cart (as a warning).

    im rolling back again cuase i updated it and was fine until i reuploaded my functions (Woocommerce and my theme had a update and hence the functions got wiped so i re applied the lines of code.

    This is the lines of code

    add_filter( ‘woocommerce_get_availability’, ‘wcs_custom_get_availability’, 1, 2);
    function wcs_custom_get_availability( $availability, $_product ) {

    // Change In Stock Text
    if ( $_product->is_in_stock() ) {
        $availability['availability'] = __('In stock with Supplier', 'woocommerce');
    }
    // Change Out of Stock Text
    if ( ! $_product->is_in_stock() ) {
        $availability['availability'] = __('Supplier out of stock', 'woocommerce');
    }
    // Change Available on backorder Text
    if ( $_product->is_on_backorder() ) {
        $availability['availability'] = __('Available on Backorder / Request', 'woocommerce');
    }
    
    return $availability;

    }

    add_action( ‘woocommerce_admin_order_item_values’, ‘action_woocommerce_admin_order_item_values’, 10, 3 );
    function action_woocommerce_admin_order_item_values( $null, $item, $item_id ) {
    $validOrderItemTypes = [‘line_item’, ‘shipping’, ‘fee’];
    $val = ( in_array( $item[‘type’], $validOrderItemTypes )) ? $item[‘total’] + $item[‘total_tax’] : ‘?’;
    $price = wc_price( $val );
    ?>

    <?php
    };

    add_action( ‘woocommerce_admin_order_item_headers’, ‘action_woocommerce_admin_order_item_headers’, 10, 3 );
    function action_woocommerce_admin_order_item_headers( $order ) {
    echo ‘Price incl. VAT’;
    }

    I dont know how tihs breaks the site when your plug is updated

    Plugin Support mouindi

    (@mouindi)

    Hi @techguysa, can you please send us an mail here [email protected], so we can debug the issue further for your site.

    Plugin Support mouindi

    (@mouindi)

    Hi all, Sometimes it may happen that you have many subscribers in your site, for this huge data there might be some issue. To resolve this issue please do use this updated plugin from here https://www.transfernow.net/dl/20231025TfCyISCR

    Let us know whether the issue has been fixed, so we can assist you with this.

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Critical Error under wp-admin 2.1.0’ is closed to new replies.