Forum Replies Created

Viewing 15 replies - 1 through 15 (of 19 total)
  • I’m experiencing the same issue; it’s also a plugin that slows down the Orders page in the admin panel.

    Thread Starter pasamsin

    (@pasamsin)

    thank u.

    Thread Starter pasamsin

    (@pasamsin)

    It gives an error as shown below because you didn’t include the last fix I provided. I’m sharing it again below.

    Uncaught Error: Unsupported operand types: int + string
    in /www/wwwroot/dev.testserver.com/public_html/wp-content/plugins/product-pre-orders-for-woo/frontend/archive_page.php on line 175

    Call stack:

    WPRO_WOO_PRE_ORDER_Frontend_archive_page::pre_order_add_text_order_detail_admin()
    wp-includes/class-wp-hook.php:324
    WP_Hook::apply_filters()
    wp-includes/class-wp-hook.php:348
    WP_Hook::do_action()
    wp-includes/plugin.php:517
    do_action()
    wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-item.php:45
    include('/www/wwwroot/dev.tes.../html-order-item.php')
    wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-items.php:75
    include('/www/wwwroot/dev.tes...html-order-items.php')
    wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-items.php:40
    WC_Meta_Box_Order_Items::output()
    wp-admin/includes/template.php:1456
    do_meta_boxes()
    wp-content/plugins/woocommerce/src/Internal/Admin/Orders/Edit.php:506
    Automattic\W\I\A\O\Edit::render_meta_boxes()
    wp-content/plugins/woocommerce/src/Internal/Admin/Orders/Edit.php:410
    Automattic\W\I\A\O\Edit::display()
    wp-content/plugins/woocommerce/src/Internal/Admin/Orders/PageController.php:294
    Automattic\W\I\A\O\PageController::output()
    wp-includes/class-wp-hook.php:324
    WP_Hook::apply_filters()
    wp-includes/class-wp-hook.php:348
    WP_Hook::do_action()
    wp-includes/plugin.php:517
    do_action()
    wp-admin/admin.php:260
            /** Add text Order Details admin
    *
    * @param $item_id
    * @param $item
    * @param $product
    */
    public function pre_order_add_text_order_detail_admin( $item_id, $item, $product ) {
    if ( ! $item->is_type( 'line_item' ) ) {
    return;
    }
    if ( $product ) {
    $product_id = $item->get_product_id();
    $variation_id = $item->get_variation_id();
    $product_type = $product->get_type();
    $is_pre_order = '';
    switch ( $product_type ) {
    case 'simple' :
    $is_pre_order = get_post_meta( $product_id, '_simple_preorder', true );
    $pre_date = get_post_meta( $product_id, '_wpro_date', true );
    $gmt_offdet = get_option( 'gmt_offset' ) * HOUR_IN_SECONDS;
    $time_total = $gmt_offdet + (int) $pre_date;
    $date_time = date_i18n( 'Y-m-d H:i:s', $time_total );
    break;
    case 'variation' :
    $is_pre_order = get_post_meta( $variation_id, '_wpro_variable_is_preorder', true );
    $pre_date = get_post_meta( $variation_id, '_wpro_date_variable', true );
    $gmt_offdet = get_option( 'gmt_offset' ) * HOUR_IN_SECONDS;
    $time_total = $gmt_offdet + (int) $pre_date;
    $date_time = date_i18n( 'Y-m-d H:i:s', $time_total );
    break;
    }

    if ( $is_pre_order === 'yes' ) {
    //$pre_date = get_post_meta( $product_id, '_wpro_date', true );
    echo esc_html( apply_filters( 'PPOFW_FILTER_text_pre_order_line_items', 'Pre-Order Products: '.$date_time ) );
    }
    }

    }
    Thread Starter pasamsin

    (@pasamsin)

    Here are the fix codes for the error on the order details page.

            /** Add text Order Details admin
    *
    * @param $item_id
    * @param $item
    * @param $product
    */
    public function pre_order_add_text_order_detail_admin( $item_id, $item, $product ) {
    if ( ! $item->is_type( 'line_item' ) ) {
    return;
    }
    if ( $product ) {
    $product_id = $item->get_product_id();
    $variation_id = $item->get_variation_id();
    $product_type = $product->get_type();
    $is_pre_order = '';
    switch ( $product_type ) {
    case 'simple' :
    $is_pre_order = get_post_meta( $product_id, '_simple_preorder', true );
    $pre_date = get_post_meta( $product_id, '_wpro_date', true );
    $gmt_offdet = get_option( 'gmt_offset' ) * HOUR_IN_SECONDS;
    $time_total = $gmt_offdet + (int) $pre_date;
    $date_time = date_i18n( 'Y-m-d H:i:s', $time_total );
    break;
    case 'variation' :
    $is_pre_order = get_post_meta( $variation_id, '_wpro_variable_is_preorder', true );
    $pre_date = get_post_meta( $variation_id, '_wpro_date_variable', true );
    $gmt_offdet = get_option( 'gmt_offset' ) * HOUR_IN_SECONDS;
    $time_total = $gmt_offdet + (int) $pre_date;
    $date_time = date_i18n( 'Y-m-d H:i:s', $time_total );
    break;
    }

    if ( $is_pre_order === 'yes' ) {
    //$pre_date = get_post_meta( $product_id, '_wpro_date', true );
    echo esc_html( apply_filters( 'PPOFW_FILTER_text_pre_order_line_items', 'Pre-Order Products: '.$date_time ) );
    }
    }

    }

    The reason for this issue is that the software was designed to work without HPOS. If HPOS is enabled, the column will not appear on the Orders page. You can make the necessary changes in the file below.

    product-pre-orders-for-woo/frontend/archive_page.php

    add_filter( 'manage_edit-shop_order_columns', array( $this, 'custom_pre_order_column' ), 20 );

    It should appear as below:

                            add_filter( 'manage_woocommerce_page_wc-orders_columns', array($this, 'custom_pre_order_column'), 20);

    add_filter( 'manage_edit-shop_order_columns', array( $this, 'custom_pre_order_column' ), 20 );

    AND

    product-pre-orders-for-woo/frontend/archive_page.php

                            add_action( 'manage_shop_order_posts_custom_column', array(
    $this,
    'custom_orders_list_column_content'
    ), 20, 2 );

    It should appear as below:

                            add_action( 'manage_shop_order_posts_custom_column', array(
    $this,
    'custom_orders_list_column_content'
    ), 20, 2 );
    add_action( 'manage_woocommerce_page_wc-orders_custom_column', array(
    $this,
    'custom_orders_list_column_content'
    ), 20, 2 );
    Thread Starter pasamsin

    (@pasamsin)

    It shows as version 1.4.9 of the premium on my site, and there is no update visible in the plugin list.

    Thread Starter pasamsin

    (@pasamsin)

    The issue above was not resolved with the new update. After the new update, I get the following error when trying to install a different plugin.

    Uncaught Error: in_array(): Argument #2 ($haystack) must be of type array, null given
    in /www/wwwroot/{DOMAIN}/public_html/wp-content/plugins/wc-blacklist-manager/inc/cores/api/sms/yobm-wc-blacklist-manager-update-sms-quota.php on line 56

    Thread Starter pasamsin

    (@pasamsin)

        public function upgrader_process_complete($upgrader, $hook_extra)

    wp-content/plugins/iyzico-woocommerce/includes/Core/Plugin.php dosyasındaki yukarıdaki satırı aşağıdaki gibi değiştirirseniz sorun çözülür.

        public static function upgrader_process_complete($upgrader, $hook_extra)
    Thread Starter pasamsin

    (@pasamsin)

    Can we add custom CSS? Or do you offer such customizations for a fee?

    Thread Starter pasamsin

    (@pasamsin)

    I’ve recorded a screen capture for you to show how I want the filters to look. Hopefully, it’s possible to do. https://streamable.com/jiw39e

    I didn’t hesitate and installed WordPress and WooCommerce from scratch, completed all the settings. First, I selected the default Woocommerce theme and the plugin was not visible in the cart. Then, I chose a different design, and this time it only appeared in the cart widget. However, it was saying ‘You have earned free shipping’ even though I didn’t have free shipping rights. I recorded a video. If you want, I can also give you the WordPress login credentials. If you provide an email address, I can send these to you as well.

    https://streamable.com/mv0nif video link

    Could you please write down your email address? I’d like to shoot a video and send you the video link. Is that possible?

    I’m experiencing the same issue. In my tests, if the user hasn’t logged in or entered address information, it displays the message ‘You’ve earned free shipping.’ However, if I enter address information or log in as a user, then it shows the message ‘You need to spend this much more for free shipping.’

    Thread Starter pasamsin

    (@pasamsin)

    [Mon Mar 04 20:01:00.772551 2024] [lsapi:warn] [pid 4157463:tid 140657887897344] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 137\n
    [Mon Mar 04 20:01:00.772616 2024] [lsapi:warn] [pid 4157463:tid 140657887897344] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 139\n
    [Mon Mar 04 20:01:00.791742 2024] [lsapi:warn] [pid 4157463:tid 140657887897344] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 137\n
    [Mon Mar 04 20:01:00.791781 2024] [lsapi:warn] [pid 4157463:tid 140657887897344] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 139\n
    [Mon Mar 04 20:01:00.810252 2024] [lsapi:warn] [pid 4157463:tid 140657887897344] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 137\n
    [Mon Mar 04 20:01:00.810305 2024] [lsapi:warn] [pid 4157463:tid 140657887897344] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 139\n
    [Mon Mar 04 20:01:00.970456 2024] [lsapi:warn] [pid 4157463:tid 140657887897344] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 137\n
    [Mon Mar 04 20:01:00.970530 2024] [lsapi:warn] [pid 4157463:tid 140657887897344] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 139\n
    [Mon Mar 04 20:01:00.985125 2024] [lsapi:warn] [pid 4157463:tid 140657887897344] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 137\n
    [Mon Mar 04 20:01:00.985172 2024] [lsapi:warn] [pid 4157463:tid 140657887897344] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 139\n
    [Mon Mar 04 20:01:01.000303 2024] [lsapi:warn] [pid 4157463:tid 140657887897344] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 137\n
    [Mon Mar 04 20:01:01.000394 2024] [lsapi:warn] [pid 4157463:tid 140657887897344] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 139\n
    [Mon Mar 04 20:01:01.016237 2024] [lsapi:warn] [pid 4157463:tid 140657887897344] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 137\n
    [Mon Mar 04 20:01:01.016303 2024] [lsapi:warn] [pid 4157463:tid 140657887897344] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 139\n
    [Mon Mar 04 20:01:01.032814 2024] [lsapi:warn] [pid 4157463:tid 140657887897344] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 137\n
    [Mon Mar 04 20:01:01.032880 2024] [lsapi:warn] [pid 4157463:tid 140657887897344] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 139\n
    [Mon Mar 04 20:01:01.048434 2024] [lsapi:warn] [pid 4157463:tid 140657887897344] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 137\n
    [Mon Mar 04 20:01:01.048499 2024] [lsapi:warn] [pid 4157463:tid 140657887897344] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 139\n
    [Mon Mar 04 20:01:01.070799 2024] [lsapi:warn] [pid 4157463:tid 140657887897344] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 137\n
    [Mon Mar 04 20:01:01.070857 2024] [lsapi:warn] [pid 4157463:tid 140657887897344] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 139\n
    [Mon Mar 04 20:01:21.035038 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 137\n
    [Mon Mar 04 20:01:21.035131 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 139\n
    [Mon Mar 04 20:01:21.052189 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 137\n
    [Mon Mar 04 20:01:21.052235 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 139\n
    [Mon Mar 04 20:01:21.131930 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 137\n
    [Mon Mar 04 20:01:21.132025 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 139\n
    [Mon Mar 04 20:01:21.146673 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 137\n
    [Mon Mar 04 20:01:21.146746 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 139\n
    [Mon Mar 04 20:01:21.343675 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 137\n
    [Mon Mar 04 20:01:21.343727 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 139\n
    [Mon Mar 04 20:01:21.358601 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 137\n
    [Mon Mar 04 20:01:21.358659 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 139\n
    [Mon Mar 04 20:01:21.373462 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 137\n
    [Mon Mar 04 20:01:21.373508 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 139\n
    [Mon Mar 04 20:01:21.388146 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 137\n
    [Mon Mar 04 20:01:21.388204 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 139\n
    [Mon Mar 04 20:01:21.404216 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 137\n
    [Mon Mar 04 20:01:21.404268 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 139\n
    [Mon Mar 04 20:01:21.419190 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 137\n
    [Mon Mar 04 20:01:21.419245 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 139\n
    [Mon Mar 04 20:01:21.433618 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 137\n
    [Mon Mar 04 20:01:21.433672 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 139\n
    [Mon Mar 04 20:01:21.450019 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 137\n
    [Mon Mar 04 20:01:21.450064 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 139\n
    [Mon Mar 04 20:01:21.465328 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 137\n
    [Mon Mar 04 20:01:21.465426 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 139\n
    [Mon Mar 04 20:01:21.481370 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 137\n
    [Mon Mar 04 20:01:21.481409 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 139\n
    [Mon Mar 04 20:01:21.498861 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 137\n
    [Mon Mar 04 20:01:21.498920 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 139\n
    [Mon Mar 04 20:01:21.517955 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 137\n
    [Mon Mar 04 20:01:21.518017 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 139\n
    [Mon Mar 04 20:01:21.532883 2024] [lsapi:warn] [pid 4157463:tid 140658660026112] [client 88.218.130.26:0] [host www.sendordaproxy.com] Backend log: PHP Warning: Trying to access array offset on false in /home/sendor1/domains/sendordaproxy.com/public_html/wp-content/plugins/appmysite/includes/class-ams-filters.php on line 137\n
Viewing 15 replies - 1 through 15 (of 19 total)