• Resolved madhumita1188

    (@madhumita1188)


    Getting this error when customer is trying to place order. kindly help me to process the order.

    Failed to process the payment. Please try again or contact the shop admin. [UNPROCESSABLE_ENTITY] The requested action could not be performed, semantically incorrect, or failed business validation. https://developer.paypal.com/api/rest/reference/orders/v2/errors/#PAYEE_NOT_ENABLED_FOR_CARD_PROCESSING PayPalGateway.php:585 PAYEE_NOT_ENABLED_FOR_CARD_PROCESSING Payee account is not setup to be able to process card payments. Please contact PayPal customer support.
    OrderEndpoint.php:228 Order status changed from Pending payment to Failed.

    I am sharing the log file report.

    2025-09-04T07:46:34+00:00Critical Uncaught TypeError: call_user_func_array(): Argument #1 ($callback) must be a valid callback, class “MCWPAction” not found in /home/u988099494/domains/globalayucare.co.uk/public_html/wp-includes/class-wp-hook.php:324 Additional context

    this is the log file report.

    The page I need help with: [log in to see the link]

Viewing 14 replies - 1 through 14 (of 14 total)
  • Thread Starter madhumita1188

    (@madhumita1188)

    Viewing log file fatal-errors-2025-09-04

    DownloadDelete permanently2025-09-04T07:46:34+00:00Critical Uncaught TypeError: call_user_func_array(): Argument #1 ($callback) must be a valid callback, class “MCWPAction” not found in /home/u988099494/domains/globalayucare.co.uk/public_html/wp-includes/class-wp-hook.php:324 Additional context{ “error”: { “type”: 1, “file”: “/home/u988099494/domains/globalayucare.co.uk/public_html/wp-includes/class-wp-hook.php”, “line”: 324 }, “remote-logging”: true, “backtrace”: [ “”, “#0 /home/u988099494/domains/globalayucare.co.uk/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()”, “#1 /home/u988099494/domains/globalayucare.co.uk/public_html/wp-includes/plugin.php(517): WP_Hook->do_action()”, “#2 /home/u988099494/domains/globalayucare.co.uk/public_html/wp-admin/includes/plugin.php(1338): do_action()”, “#3 /home/u988099494/domains/globalayucare.co.uk/public_html/wp-admin/includes/plugin.php(970): uninstall_plugin()”, “#4 /home/u988099494/domains/globalayucare.co.uk/public_html/wp-admin/includes/ajax-actions.php(4771): delete_plugins()”, “#5 /home/u988099494/domains/globalayucare.co.uk/public_html/wp-includes/class-wp-hook.php(324): wp_ajax_delete_plugin()”, “#6 /home/u988099494/domains/globalayucare.co.uk/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters()”, “#7 /home/u988099494/domains/globalayucare.co.uk/public_html/wp-includes/plugin.php(517): WP_Hook->do_action()”, “#8 /home/u988099494/domains/globalayucare.co.uk/public_html/wp-admin/admin-ajax.php(192): do_action()”, “#9 {main}”, “thrown” ] }

    Plugin Support Krystian Syde

    (@inpsydekrystian)

    Hello @madhumita1188

    Regarding the PayPal error:

    [UNPROCESSABLE_ENTITY] PAYEE_NOT_ENABLED_FOR_CARD_PROCESSING
    Payee account is not setup to be able to process card payments.

    This means your PayPal account is not currently enabled to accept direct debit or credit card payments (e.g. through the Standard Card Button or Advanced Card Processing). This limitation comes from PayPal’s side and cannot be resolved through the plugin itself. To proceed, please contact PayPal Merchant Support. You can also share this official PayPal reference link with them: https://developer.paypal.com/api/rest/reference/orders/v2/errors/#PAYEE_NOT_ENABLED_FOR_CARD_PROCESSING

    Once they enable it, card payments should work without this error.

    Separately, the fatal error from your log:

    Uncaught TypeError: call_user_func_array(): Argument #1 ($callback) must be a valid callback, class “MCWPAction” not found
    

    is unrelated to PayPal or the payment issue. This is a WordPress-side problem caused by a missing class or broken hook registration, likely left over from a removed plugin or custom code. To fix this, search your site for any reference to MCWPAction and either correct or remove it to prevent the callback from failing.

    Let me know if you need help locating that code or reviewing your PayPal plugin connection settings.

    Kind Regards,
    Krystian

    riser

    (@riser)

    @inpsydekrystian

    Regarding the PayPal error: [UNPROCESSABLE_ENTITY] PAYEE_NOT_ENABLED_FOR_CARD_PROCESSING
    Payee account is not setup to be able to process card payments.

    I’ve had the exact same error quite a few times lately.
    Reason for this error – at least in my case:

    Someone/rather Bot or script accessed either a shop site or directly /?post_type=product multiple times a day simply to collect a valid Session. Then “passed over” this session to different IPs who then accessed the following url/parameters, while changing User-Agent like crazy.

    POST /?wc-ajax=ppc-create-order
    POST /?wc-ajax=ppc-approve-order
    POST /?wc-ajax=checkout

    All this in split seconds and though created failed orders leading to the error [UNPROCESSABLE_ENTITY].

    From what I understand it’s Session-Hijacking for cart testing attacks that took me quite a while to find out, as said at least in my case it was.

    The only way I could stopp them so far was blocking the first IP that’s collecting the session and thus before it could “pass over” to the other ips/scripts accessing wc-ajay=ppc-create-order etc

    @riser just found your post as I’ve just had the same issue and googled the paypal error message. Is this still happening to you? I’m not sure whether or not this is something to worried about. Haven’t managed to find this issue documented anywhere else online!

    I’ve checked the logs and I’m seeing the same pattern of

    POST /?wc-ajax=ppc-create-order
    POST /?wc-ajax=ppc-approve-order
    POST /?wc-ajax=checkout

    with a changing user agent!

    @inpsydekrystian is there anything we can do to protect against this?

    Cheers

    Scott

    Plugin Support Krystian Syde

    (@inpsydekrystian)

    Hello @riser & @scott123456789

    Please reach out to us directly and share the logs, as they could be very helpful for analyzing the behavior and preventing similar issues in the future. Since this thread was created by another user, there’s a chance it may be moderated, so we recommend opening a support ticket instead.

    You can contact us here: Request Support

    Make sure to include the URL of this thread in your ticket for reference.

    Thanks in advance.

    Kind regards,
    Krystian

    Thread Starter madhumita1188

    (@madhumita1188)

    The issue is not resolved at all. I am getting the same error again and again and the orders are failing. Kindly help me..

    Regards

    Plugin Support Krystian Syde

    (@inpsydekrystian)

    Hello @madhumita1188

    We recommend opening a support ticket so that we can investigate. You can contact us directly through the following link: Request Support

    Please make sure to include your System Report from WooCommerce → Status → Get system report, along with a screenshot of any error messages, and if possible, the latest order notes or debug log entries related to the failed transactions.

    This will help us escalate your case and provide a more targeted resolution.

    Kind Regards,
    Krystian

    Thread Starter madhumita1188

    (@madhumita1188)

    There is no link in the link given by you @inpsydekrystian. It is redirecting to a page not any contact form is there.

    Plugin Support Krystian Syde

    (@inpsydekrystian)

    Hello @madhumita1188

    To open a support ticket, please click the question mark (?) icon in the bottom right corner of the screen on the page here: https://paypal.inpsyde.com/docs/request-support/

    Once you click the icon, a contact form should appear, allowing you to submit your issue. If the form still does not appear, please try using a different browser or disabling any content blockers or ad blockers temporarily.

    Let me know if you continue to face difficulties.

    Kind Regards,
    Krystian

    Thread Starter madhumita1188

    (@madhumita1188)

    Done it. Please check.

    Regards

    Hey @inpsydekrystian ,
    here’s one typical of those “attacks” that lead to failed orders.

    209.200.246.67 http://www.mysite.com – [04/Sep/2025:09:16:46 +0000] “GET /?post_type=product HTTP/1.1” 200 129896 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0” | TLSv1.3 | 0.653 0.757 0.787 MISS 0 NC:000000 UP:-
    209.200.246.67 http://www.mysite.com – [04/Sep/2025:09:16:47 +0000] “POST /?wc-ajax=add_to_cart HTTP/2.0” 200 9062 “-” “Mozilla/5.0 (Linux; Android 10; Redmi Note 9 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.80 Mobile Safari/537.36” | TLSv1.3 | 0.666 0.689 0.690 – 0 NC:000000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.67 http://www.mysite.com – [04/Sep/2025:09:16:48 +0000] “GET /checkout HTTP/2.0” 301 0 “-” “Mozilla/5.0 (Linux; Android 10; Redmi Note 9 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.80 Mobile Safari/537.36” | TLSv1.3 | 0.537 0.549 0.549 BYPASS 0 NC:320000 UP:SKIP_CACHE_SET_COOKIE
    209.200.246.67 http://www.mysite.com – [04/Sep/2025:09:16:49 +0000] “GET /checkout/ HTTP/2.0” 200 238508 “-” “Mozilla/5.0 (Linux; Android 10; Redmi Note 9 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.80 Mobile Safari/537.36” | TLSv1.3 | 0.845 0.937 0.976 BYPASS 0 NC:320000 UP:-
    209.200.246.67 http://www.mysite.com – [04/Sep/2025:09:16:52 +0000] “POST /?wc-ajax=update_order_review HTTP/2.0” 200 30861 “-” “Mozilla/5.0 (Linux; Android 10; Redmi Note 9 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.80 Mobile Safari/537.36” | TLSv1.3 | 2.812 2.833 2.834 – 0 NC:300000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.67 http://www.mysite.com – [04/Sep/2025:09:16:52 +0000] “POST /?wc-ajax=ppc-data-client-id HTTP/2.0” 200 537 “-” “Mozilla/5.0 (Linux; Android 10; Redmi Note 9 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.80 Mobile Safari/537.36” | TLSv1.3 | 0.770 0.798 0.798 – 0 NC:300000 UP:-DT

    175.143.111.74 http://www.mysite.com – [04/Sep/2025:09:16:58 +0000] “POST /?wc-ajax=ppc-create-order HTTP/2.0” 200 110 “-” “Mozilla/5.0 (Linux; Android 10; Redmi Note 9 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.80 Mobile Safari/537.36” | TLSv1.3 | 0.818 0.846 1.053 – 0 NC:300000 UP:-DT
    175.143.111.74 http://www.mysite.com – [04/Sep/2025:09:17:02 +0000] “POST /?wc-ajax=ppc-approve-order HTTP/2.0” 200 16 “-” “Mozilla/5.0 (Linux; Android 10; Redmi Note 9 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.80 Mobile Safari/537.36” | TLSv1.3 | 0.971 0.997 1.205 – 0 NC:300000 UP:-DT
    175.143.111.74 http://www.mysite.com – [04/Sep/2025:09:17:05 +0000] “POST /?wc-ajax=checkout HTTP/2.0” 200 466 “-” “Mozilla/5.0 (Linux; Android 10; Redmi Note 9 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.80 Mobile Safari/537.36” | TLSv1.3 | 2.368 2.404 2.628 – 0 NC:300000 UP:-DT

    Note:
    209.200.246.67 – always starts with UA “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0”.
    Never had this UA within 4 weeks except from two IP addresses (209.200.246.67 and 209.200.246.87).

    Then following calls from different IPs for the ?wc-ajax=ppc-create-order, ?wc-ajax=ppc-aprrove-order and ?wc-ajax=checkout create to the actual failed orders.

    My conclusion: 209.200.246.67 and 209.200.246.87 collect a valid session/nonce and – in this example – following 175.143.111.74 creates the orders. The 209.200.246.67 and 209.200.246.87 always appear first, the following ones are always different IP from all over the world and change UA in milli seconds.

    The scammer/script always first accesses ?post_type=product or other shop pages without a referer (Unknown Source in WC Orders in Backend).

    In my case: since I’ve blocked 209.200.246.67 and 209.200.246.87 all failed orders stopped. Those two IP return daily, get a 403 and that’s it.

    In other cases it might be different addresses that come first to get a valid session but I guess the behaviour is the same.

    @inpsydekrystian,
    here’s another access log from 27/28 august related to this issue:

    209.200.246.87 http://www.mysite.com – [27/Aug/2025:16:35:40 +0000] “GET /?post_type=product HTTP/1.1” 200 129593 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0” | TLSv1.3 | – – 0.091 HIT 0 NC:000000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:16:35:43 +0000] “POST /?wc-ajax=add_to_cart HTTP/2.0” 200 8722 “-” “Mozilla/5.0 (Linux; Android 9; Redmi Note 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.62 Mobile Safari/537.36” | TLSv1.3 | 1.582 1.607 1.608 – 0 NC:000000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:16:35:45 +0000] “GET /checkout HTTP/2.0” 301 0 “-” “Mozilla/5.0 (Linux; Android 9; Redmi Note 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.62 Mobile Safari/537.36” | TLSv1.3 | 1.754 1.768 1.769 BYPASS 0 NC:320000 UP:SKIP_CACHE_SET_COOKIE
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:16:35:48 +0000] “GET /checkout/ HTTP/2.0” 200 238104 “-” “Mozilla/5.0 (Linux; Android 9; Redmi Note 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.62 Mobile Safari/537.36” | TLSv1.3 | 3.082 3.192 3.231 BYPASS 0 NC:320000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:16:35:53 +0000] “POST /?wc-ajax=update_order_review HTTP/2.0” 200 30861 “-” “Mozilla/5.0 (Linux; Android 9; Redmi Note 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.62 Mobile Safari/537.36” | TLSv1.3 | 5.146 5.170 5.173 – 0 NC:300000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:16:35:55 +0000] “POST /?wc-ajax=ppc-data-client-id HTTP/2.0” 200 537 “-” “Mozilla/5.0 (Linux; Android 9; Redmi Note 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.62 Mobile Safari/537.36” | TLSv1.3 | 1.363 1.385 1.385 – 0 NC:300000 UP:-DT

    FAILED ORDER (IP showing in WC order details):

    106.195.3.95 www.mysite.com - [27/Aug/2025:16:36:03 +0000] "POST /?wc-ajax=ppc-create-order HTTP/2.0" 200 110 "-" "Mozilla/5.0 (Linux; Android 9; Redmi Note 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.62 Mobile Safari/537.36" | TLSv1.3 | 1.391 1.414 1.414 - 0 NC:300000 UP:-DT
    106.195.3.95 www.mysite.com - [27/Aug/2025:16:36:08 +0000] "POST /?wc-ajax=ppc-approve-order HTTP/2.0" 200 16 "-" "Mozilla/5.0 (Linux; Android 9; Redmi Note 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.62 Mobile Safari/537.36" | TLSv1.3 | 1.589 1.614 1.613 - 0 NC:300000 UP:-DT
    106.195.3.95 www.mysite.com - [27/Aug/2025:16:36:14 +0000] "POST /?wc-ajax=checkout HTTP/2.0" 200 466 "-" "Mozilla/5.0 (Linux; Android 9; Redmi Note 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.62 Mobile Safari/537.36" | TLSv1.3 | 5.356 5.383 5.383 - 0 NC:300000 UP:-DT

    209.200.246.87 http://www.mysite.com – [27/Aug/2025:16:43:35 +0000] “GET /?post_type=product HTTP/1.1” 200 129593 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0” | TLSv1.3 | – – 0.095 HIT 0 NC:000000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:16:43:37 +0000] “POST /?wc-ajax=add_to_cart HTTP/2.0” 200 8722 “-” “Mozilla/5.0 (Linux; Android 10; Redmi 8 Build/QKQ1.191014.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/93.0.4577.62 Mobile Safari/537.36” | TLSv1.3 | 1.814 1.836 1.836 – 0 NC:000000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:16:43:39 +0000] “GET /checkout HTTP/2.0” 301 0 “-” “Mozilla/5.0 (Linux; Android 10; Redmi 8 Build/QKQ1.191014.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/93.0.4577.62 Mobile Safari/537.36” | TLSv1.3 | 1.863 1.884 1.886 BYPASS 0 NC:320000 UP:SKIP_CACHE_SET_COOKIE
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:16:43:43 +0000] “GET /checkout/ HTTP/2.0” 200 238104 “-” “Mozilla/5.0 (Linux; Android 10; Redmi 8 Build/QKQ1.191014.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/93.0.4577.62 Mobile Safari/537.36” | TLSv1.3 | 3.708 3.804 3.850 BYPASS 0 NC:320000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:16:43:48 +0000] “POST /?wc-ajax=update_order_review HTTP/2.0” 200 30861 “-” “Mozilla/5.0 (Linux; Android 10; Redmi 8 Build/QKQ1.191014.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/93.0.4577.62 Mobile Safari/537.36” | TLSv1.3 | 4.720 4.739 4.739 – 0 NC:300000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:16:43:49 +0000] “POST /?wc-ajax=ppc-data-client-id HTTP/2.0” 200 537 “-” “Mozilla/5.0 (Linux; Android 10; Redmi 8 Build/QKQ1.191014.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/93.0.4577.62 Mobile Safari/537.36” | TLSv1.3 | 1.274 1.300 1.302 – 0 NC:300000 UP:-DT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:17:52:34 +0000] “GET /?post_type=product HTTP/1.1” 200 129593 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0” | TLSv1.3 | – – 0.094 HIT 0 NC:000000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:17:52:36 +0000] “POST /?wc-ajax=add_to_cart HTTP/2.0” 200 8722 “-” “Mozilla/5.0 (iPhone; CPU iPhone OS 13_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/134.0.342436422 Mobile/15E148 Safari/604.1” | TLSv1.3 | 1.889 1.914 1.913 – 0 NC:000000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:17:52:38 +0000] “GET /checkout HTTP/2.0” 301 0 “-” “Mozilla/5.0 (iPhone; CPU iPhone OS 13_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/134.0.342436422 Mobile/15E148 Safari/604.1” | TLSv1.3 | 1.645 1.664 1.663 BYPASS 0 NC:320000 UP:SKIP_CACHE_SET_COOKIE
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:17:52:41 +0000] “GET /checkout/ HTTP/2.0” 200 238234 “-” “Mozilla/5.0 (iPhone; CPU iPhone OS 13_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/134.0.342436422 Mobile/15E148 Safari/604.1” | TLSv1.3 | 2.654 2.751 2.793 BYPASS 0 NC:320000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:17:52:45 +0000] “POST /?wc-ajax=update_order_review HTTP/2.0” 200 30861 “-” “Mozilla/5.0 (iPhone; CPU iPhone OS 13_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/134.0.342436422 Mobile/15E148 Safari/604.1” | TLSv1.3 | 4.597 4.619 4.619 – 0 NC:300000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:17:52:47 +0000] “POST /?wc-ajax=ppc-data-client-id HTTP/2.0” 200 537 “-” “Mozilla/5.0 (iPhone; CPU iPhone OS 13_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/134.0.342436422 Mobile/15E148 Safari/604.1” | TLSv1.3 | 1.484 1.502 1.502 – 0 NC:300000 UP:-DT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:17:56:25 +0000] “GET /?post_type=product HTTP/1.1” 200 129593 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0” | TLSv1.3 | – – 0.096 HIT 0 NC:000000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:17:56:27 +0000] “POST /?wc-ajax=add_to_cart HTTP/2.0” 200 8722 “-” “Mozilla/5.0 (iPhone; CPU OS 14_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/32.1 Mobile/15E148 Safari/605.1.15” | TLSv1.3 | 1.668 1.696 1.696 – 0 NC:000000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:17:56:29 +0000] “GET /checkout HTTP/2.0” 301 0 “-” “Mozilla/5.0 (iPhone; CPU OS 14_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/32.1 Mobile/15E148 Safari/605.1.15” | TLSv1.3 | 2.141 2.159 2.159 BYPASS 0 NC:320000 UP:SKIP_CACHE_SET_COOKIE
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:17:56:32 +0000] “GET /checkout/ HTTP/2.0” 200 238234 “-” “Mozilla/5.0 (iPhone; CPU OS 14_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/32.1 Mobile/15E148 Safari/605.1.15” | TLSv1.3 | 2.559 2.651 2.703 BYPASS 0 NC:320000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:17:56:35 +0000] “POST /?wc-ajax=update_order_review HTTP/2.0” 200 30861 “-” “Mozilla/5.0 (iPhone; CPU OS 14_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/32.1 Mobile/15E148 Safari/605.1.15” | TLSv1.3 | 3.705 3.732 3.732 – 0 NC:300000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:17:56:37 +0000] “POST /?wc-ajax=ppc-data-client-id HTTP/2.0” 200 537 “-” “Mozilla/5.0 (iPhone; CPU OS 14_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/32.1 Mobile/15E148 Safari/605.1.15” | TLSv1.3 | 1.407 1.439 1.439 – 0 NC:300000 UP:-DT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:19:47:28 +0000] “GET /?post_type=product HTTP/1.1” 200 129593 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0” | TLSv1.3 | – – 0.090 HIT 0 NC:000000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:19:47:31 +0000] “POST /?wc-ajax=add_to_cart HTTP/2.0” 200 8722 “-” “Mozilla/5.0 (Linux; arm; Android 10; MOA-LX9N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 YaBrowser/20.2.2.128.00 Mobile Safari/537.36” | TLSv1.3 | 1.590 1.609 1.609 – 0 NC:000000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:19:47:33 +0000] “GET /checkout HTTP/2.0” 301 0 “-” “Mozilla/5.0 (Linux; arm; Android 10; MOA-LX9N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 YaBrowser/20.2.2.128.00 Mobile Safari/537.36” | TLSv1.3 | 2.662 2.684 2.684 BYPASS 0 NC:320000 UP:SKIP_CACHE_SET_COOKIE
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:19:47:36 +0000] “GET /checkout/ HTTP/2.0” 200 233579 “-” “Mozilla/5.0 (Linux; arm; Android 10; MOA-LX9N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 YaBrowser/20.2.2.128.00 Mobile Safari/537.36” | TLSv1.3 | 2.587 2.716 2.727 BYPASS 0 NC:320000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:19:47:42 +0000] “POST /?wc-ajax=update_order_review HTTP/2.0” 200 30861 “-” “Mozilla/5.0 (Linux; arm; Android 10; MOA-LX9N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 YaBrowser/20.2.2.128.00 Mobile Safari/537.36” | TLSv1.3 | 5.945 5.962 5.962 – 0 NC:300000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:19:47:44 +0000] “POST /?wc-ajax=ppc-data-client-id HTTP/2.0” 200 537 “-” “Mozilla/5.0 (Linux; arm; Android 10; MOA-LX9N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 YaBrowser/20.2.2.128.00 Mobile Safari/537.36” | TLSv1.3 | 1.334 1.353 1.353 – 0 NC:300000 UP:-DT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:19:49:22 +0000] “GET /?post_type=product HTTP/1.1” 200 129593 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0” | TLSv1.3 | – – 0.092 HIT 0 NC:000000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:19:49:25 +0000] “POST /?wc-ajax=add_to_cart HTTP/2.0” 200 8722 “-” “Mozilla/5.0 (Linux; Android 10; LM-K510) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.181 Mobile Safari/537.36” | TLSv1.3 | 2.310 2.336 2.335 – 0 NC:000000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:19:49:27 +0000] “GET /checkout HTTP/2.0” 301 0 “-” “Mozilla/5.0 (Linux; Android 10; LM-K510) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.181 Mobile Safari/537.36” | TLSv1.3 | 2.084 2.100 2.100 BYPASS 0 NC:320000 UP:SKIP_CACHE_SET_COOKIE
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:19:49:30 +0000] “GET /checkout/ HTTP/2.0” 200 233579 “-” “Mozilla/5.0 (Linux; Android 10; LM-K510) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.181 Mobile Safari/537.36” | TLSv1.3 | 2.945 3.077 3.086 BYPASS 0 NC:320000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:19:49:35 +0000] “POST /?wc-ajax=update_order_review HTTP/2.0” 200 30861 “-” “Mozilla/5.0 (Linux; Android 10; LM-K510) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.181 Mobile Safari/537.36” | TLSv1.3 | 4.337 4.356 4.356 – 0 NC:300000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:19:49:37 +0000] “POST /?wc-ajax=ppc-data-client-id HTTP/2.0” 200 537 “-” “Mozilla/5.0 (Linux; Android 10; LM-K510) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.181 Mobile Safari/537.36” | TLSv1.3 | 1.463 1.489 1.488 – 0 NC:300000 UP:-DT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:20:07:04 +0000] “GET /?post_type=product HTTP/1.1” 200 129593 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0” | TLSv1.3 | – – 0.092 HIT 0 NC:000000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:20:07:06 +0000] “POST /?wc-ajax=add_to_cart HTTP/2.0” 200 8722 “-” “Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-G935F) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/15.0 Chrome/90.0.4430.210 Mobile Safari/537.36” | TLSv1.3 | 1.569 1.589 1.590 – 0 NC:000000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:20:07:08 +0000] “GET /checkout HTTP/2.0” 301 0 “-” “Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-G935F) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/15.0 Chrome/90.0.4430.210 Mobile Safari/537.36” | TLSv1.3 | 2.384 2.404 2.403 BYPASS 0 NC:320000 UP:SKIP_CACHE_SET_COOKIE
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:20:07:11 +0000] “GET /checkout/ HTTP/2.0” 200 233579 “-” “Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-G935F) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/15.0 Chrome/90.0.4430.210 Mobile Safari/537.36” | TLSv1.3 | 2.645 2.758 2.777 BYPASS 0 NC:320000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:20:07:17 +0000] “POST /?wc-ajax=update_order_review HTTP/2.0” 200 30861 “-” “Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-G935F) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/15.0 Chrome/90.0.4430.210 Mobile Safari/537.36” | TLSv1.3 | 5.152 5.174 5.173 – 0 NC:300000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:20:07:19 +0000] “POST /?wc-ajax=ppc-data-client-id HTTP/2.0” 200 537 “-” “Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-G935F) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/15.0 Chrome/90.0.4430.210 Mobile Safari/537.36” | TLSv1.3 | 1.923 1.948 1.947 – 0 NC:300000 UP:-DT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:20:10:37 +0000] “GET /?post_type=product HTTP/1.1” 200 129593 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0” | TLSv1.3 | – – 0.089 HIT 0 NC:000000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:20:10:39 +0000] “POST /?wc-ajax=add_to_cart HTTP/2.0” 200 8722 “-” “Mozilla/5.0 (Linux; Android 10; SM-N960U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Mobile Safari/537.36” | TLSv1.3 | 1.786 1.807 1.807 – 0 NC:000000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:20:10:42 +0000] “GET /checkout HTTP/2.0” 301 0 “-” “Mozilla/5.0 (Linux; Android 10; SM-N960U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Mobile Safari/537.36” | TLSv1.3 | 2.709 2.724 2.723 BYPASS 0 NC:320000 UP:SKIP_CACHE_SET_COOKIE
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:20:10:46 +0000] “GET /checkout/ HTTP/2.0” 200 233579 “-” “Mozilla/5.0 (Linux; Android 10; SM-N960U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Mobile Safari/537.36” | TLSv1.3 | 3.307 3.444 3.444 BYPASS 0 NC:320000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:20:10:51 +0000] “POST /?wc-ajax=update_order_review HTTP/2.0” 200 30861 “-” “Mozilla/5.0 (Linux; Android 10; SM-N960U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Mobile Safari/537.36” | TLSv1.3 | 5.163 5.183 5.183 – 0 NC:300000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:20:10:53 +0000] “POST /?wc-ajax=ppc-data-client-id HTTP/2.0” 200 537 “-” “Mozilla/5.0 (Linux; Android 10; SM-N960U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Mobile Safari/537.36” | TLSv1.3 | 1.469 1.488 1.487 – 0 NC:300000 UP:-DT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:20:21:03 +0000] “GET /?post_type=product HTTP/1.1” 200 129593 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0” | TLSv1.3 | – – 0.093 HIT 0 NC:000000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:20:21:05 +0000] “POST /?wc-ajax=add_to_cart HTTP/2.0” 200 8723 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Goanna/4.8 Firefox/68.0 Basilisk/20210719” | TLSv1.3 | 1.629 1.661 1.661 – 0 NC:000000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:20:21:07 +0000] “GET /checkout HTTP/2.0” 301 1 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Goanna/4.8 Firefox/68.0 Basilisk/20210719” | TLSv1.3 | 1.956 1.975 1.975 BYPASS 0 NC:320000 UP:SKIP_CACHE_SET_COOKIE
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:20:21:10 +0000] “GET /checkout/ HTTP/2.0” 200 233580 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Goanna/4.8 Firefox/68.0 Basilisk/20210719” | TLSv1.3 | 2.743 2.894 2.894 BYPASS 0 NC:320000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:20:21:17 +0000] “POST /?wc-ajax=update_order_review HTTP/2.0” 200 35302 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Goanna/4.8 Firefox/68.0 Basilisk/20210719” | TLSv1.3 | 6.373 6.401 6.401 – 0 NC:300000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:20:21:19 +0000] “POST /?wc-ajax=ppc-data-client-id HTTP/2.0” 200 538 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Goanna/4.8 Firefox/68.0 Basilisk/20210719” | TLSv1.3 | 2.016 2.040 2.040 – 0 NC:300000 UP:-DT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:21:06:32 +0000] “GET /?post_type=product HTTP/1.1” 200 129593 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0” | TLSv1.3 | 0.662 0.758 0.775 MISS 0 NC:000000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:21:06:35 +0000] “POST /?wc-ajax=add_to_cart HTTP/2.0” 200 8722 “-” “Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/8.1.6 Mobile/15E148 Safari/605.1.15” | TLSv1.3 | 1.871 1.894 1.893 – 0 NC:000000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:21:06:37 +0000] “GET /checkout HTTP/2.0” 301 0 “-” “Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/8.1.6 Mobile/15E148 Safari/605.1.15” | TLSv1.3 | 2.068 2.086 2.086 BYPASS 0 NC:320000 UP:SKIP_CACHE_SET_COOKIE
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:21:06:40 +0000] “GET /checkout/ HTTP/2.0” 200 238261 “-” “Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/8.1.6 Mobile/15E148 Safari/605.1.15” | TLSv1.3 | 2.928 3.023 3.060 BYPASS 0 NC:320000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:21:06:46 +0000] “POST /?wc-ajax=update_order_review HTTP/2.0” 200 30861 “-” “Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/8.1.6 Mobile/15E148 Safari/605.1.15” | TLSv1.3 | 5.550 5.576 5.576 – 0 NC:300000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:21:06:47 +0000] “POST /?wc-ajax=ppc-data-client-id HTTP/2.0” 200 537 “-” “Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) FxiOS/8.1.6 Mobile/15E148 Safari/605.1.15” | TLSv1.3 | 1.360 1.377 1.377 – 0 NC:300000 UP:-DT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:21:08:02 +0000] “GET /?post_type=product HTTP/1.1” 200 129593 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0” | TLSv1.3 | – – 0.140 HIT 0 NC:000000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:21:08:03 +0000] “POST /?wc-ajax=add_to_cart HTTP/2.0” 200 8722 “-” “Mozilla/5.0 (Linux; Android 7.1.1; Lenovo TB-8504F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36” | TLSv1.3 | 1.498 1.523 1.523 – 0 NC:000000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:21:08:06 +0000] “GET /checkout HTTP/2.0” 301 0 “-” “Mozilla/5.0 (Linux; Android 7.1.1; Lenovo TB-8504F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36” | TLSv1.3 | 2.481 2.495 2.494 BYPASS 0 NC:320000 UP:SKIP_CACHE_SET_COOKIE
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:21:08:09 +0000] “GET /checkout/ HTTP/2.0” 200 238261 “-” “Mozilla/5.0 (Linux; Android 7.1.1; Lenovo TB-8504F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36” | TLSv1.3 | 2.592 2.683 2.767 BYPASS 0 NC:320000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:21:08:13 +0000] “POST /?wc-ajax=update_order_review HTTP/2.0” 200 34790 “-” “Mozilla/5.0 (Linux; Android 7.1.1; Lenovo TB-8504F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36” | TLSv1.3 | 4.125 4.147 4.148 – 0 NC:300000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:21:08:15 +0000] “POST /?wc-ajax=ppc-data-client-id HTTP/2.0” 200 537 “-” “Mozilla/5.0 (Linux; Android 7.1.1; Lenovo TB-8504F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36” | TLSv1.3 | 1.665 1.687 1.688 – 0 NC:300000 UP:-DT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:21:12:22 +0000] “GET /?post_type=product HTTP/1.1” 200 129593 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0” | TLSv1.3 | – – 0.088 HIT 0 NC:000000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:21:12:24 +0000] “POST /?wc-ajax=add_to_cart HTTP/2.0” 200 8722 “-” “Mozilla/5.0 (Linux; Android 9; ONEPLUS A5010) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.152 Mobile Safari/537.36” | TLSv1.3 | 1.827 1.849 1.850 – 0 NC:000000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:21:12:27 +0000] “GET /checkout HTTP/2.0” 301 0 “-” “Mozilla/5.0 (Linux; Android 9; ONEPLUS A5010) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.152 Mobile Safari/537.36” | TLSv1.3 | 2.504 2.518 2.518 BYPASS 0 NC:320000 UP:SKIP_CACHE_SET_COOKIE
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:21:12:30 +0000] “GET /checkout/ HTTP/2.0” 200 238261 “-” “Mozilla/5.0 (Linux; Android 9; ONEPLUS A5010) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.152 Mobile Safari/537.36” | TLSv1.3 | 3.385 3.510 3.550 BYPASS 0 NC:320000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:21:12:36 +0000] “POST /?wc-ajax=update_order_review HTTP/2.0” 200 30861 “-” “Mozilla/5.0 (Linux; Android 9; ONEPLUS A5010) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.152 Mobile Safari/537.36” | TLSv1.3 | 5.506 5.523 5.524 – 0 NC:300000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:21:12:37 +0000] “POST /?wc-ajax=ppc-data-client-id HTTP/2.0” 200 537 “-” “Mozilla/5.0 (Linux; Android 9; ONEPLUS A5010) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.152 Mobile Safari/537.36” | TLSv1.3 | 1.509 1.529 1.530 – 0 NC:300000 UP:-DT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:21:15:14 +0000] “GET /?post_type=product HTTP/1.1” 200 129593 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0” | TLSv1.3 | – – 0.094 HIT 0 NC:000000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:21:15:16 +0000] “POST /?wc-ajax=add_to_cart HTTP/2.0” 200 8722 “-” “Mozilla/5.0 (Linux; Android 10; RMX2185) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.74 Mobile Safari/537.36” | TLSv1.3 | 1.765 1.792 1.791 – 0 NC:000000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:21:15:18 +0000] “GET /checkout HTTP/2.0” 301 0 “-” “Mozilla/5.0 (Linux; Android 10; RMX2185) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.74 Mobile Safari/537.36” | TLSv1.3 | 2.081 2.097 2.097 BYPASS 0 NC:320000 UP:SKIP_CACHE_SET_COOKIE
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:21:15:21 +0000] “GET /checkout/ HTTP/2.0” 200 238261 “-” “Mozilla/5.0 (Linux; Android 10; RMX2185) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.74 Mobile Safari/537.36” | TLSv1.3 | 2.737 2.840 2.871 BYPASS 0 NC:320000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:21:15:25 +0000] “POST /?wc-ajax=update_order_review HTTP/2.0” 200 30861 “-” “Mozilla/5.0 (Linux; Android 10; RMX2185) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.74 Mobile Safari/537.36” | TLSv1.3 | 4.510 4.534 4.535 – 0 NC:300000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:21:15:27 +0000] “POST /?wc-ajax=ppc-data-client-id HTTP/2.0” 200 537 “-” “Mozilla/5.0 (Linux; Android 10; RMX2185) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.74 Mobile Safari/537.36” | TLSv1.3 | 1.432 1.453 1.453 – 0 NC:300000 UP:-DT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:21:34:48 +0000] “GET /?post_type=product HTTP/1.1” 200 129593 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0” | TLSv1.3 | – – 0.097 HIT 0 NC:000000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:21:34:50 +0000] “POST /?wc-ajax=add_to_cart HTTP/2.0” 200 8722 “-” “Mozilla/5.0 (X11; CrOS x86_64 13402.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4229.0 Safari/537.36” | TLSv1.3 | 1.512 1.538 1.538 – 0 NC:000000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:21:34:52 +0000] “GET /checkout HTTP/2.0” 301 0 “-” “Mozilla/5.0 (X11; CrOS x86_64 13402.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4229.0 Safari/537.36” | TLSv1.3 | 2.036 2.052 2.052 BYPASS 0 NC:320000 UP:SKIP_CACHE_SET_COOKIE
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:21:34:55 +0000] “GET /checkout/ HTTP/2.0” 200 238261 “-” “Mozilla/5.0 (X11; CrOS x86_64 13402.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4229.0 Safari/537.36” | TLSv1.3 | 2.936 3.027 3.072 BYPASS 0 NC:320000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:21:35:01 +0000] “POST /?wc-ajax=update_order_review HTTP/2.0” 200 30861 “-” “Mozilla/5.0 (X11; CrOS x86_64 13402.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4229.0 Safari/537.36” | TLSv1.3 | 5.603 5.628 5.628 – 0 NC:300000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:21:35:03 +0000] “POST /?wc-ajax=ppc-data-client-id HTTP/2.0” 200 537 “-” “Mozilla/5.0 (X11; CrOS x86_64 13402.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4229.0 Safari/537.36” | TLSv1.3 | 1.887 1.913 1.913 – 0 NC:300000 UP:-DT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:22:09:53 +0000] “GET /?post_type=product HTTP/1.1” 200 129593 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0” | TLSv1.3 | – – 0.092 HIT 0 NC:000000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:22:09:55 +0000] “POST /?wc-ajax=add_to_cart HTTP/2.0” 200 8722 “-” “Mozilla/5.0 (Linux; Android 8.0.0; HTC_U-1u) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.83 Mobile Safari/537.36” | TLSv1.3 | 1.527 1.552 1.553 – 0 NC:000000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:22:09:57 +0000] “GET /checkout HTTP/2.0” 301 0 “-” “Mozilla/5.0 (Linux; Android 8.0.0; HTC_U-1u) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.83 Mobile Safari/537.36” | TLSv1.3 | 2.149 2.163 2.164 BYPASS 0 NC:320000 UP:SKIP_CACHE_SET_COOKIE
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:22:10:00 +0000] “GET /checkout/ HTTP/2.0” 200 238261 “-” “Mozilla/5.0 (Linux; Android 8.0.0; HTC_U-1u) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.83 Mobile Safari/537.36” | TLSv1.3 | 3.213 3.324 3.365 BYPASS 0 NC:320000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:22:10:07 +0000] “POST /?wc-ajax=update_order_review HTTP/2.0” 200 30861 “-” “Mozilla/5.0 (Linux; Android 8.0.0; HTC_U-1u) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.83 Mobile Safari/537.36” | TLSv1.3 | 6.027 6.044 6.045 – 0 NC:300000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:22:10:08 +0000] “POST /?wc-ajax=ppc-data-client-id HTTP/2.0” 200 537 “-” “Mozilla/5.0 (Linux; Android 8.0.0; HTC_U-1u) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.83 Mobile Safari/537.36” | TLSv1.3 | 1.215 1.233 1.233 – 0 NC:300000 UP:-DT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:22:13:37 +0000] “GET /?post_type=product HTTP/1.1” 200 129593 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0” | TLSv1.3 | – – 0.092 HIT 0 NC:000000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:22:13:40 +0000] “POST /?wc-ajax=add_to_cart HTTP/2.0” 200 8722 “-” “Mozilla/5.0 (Linux; Android 10; SM-G965U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.114 Mobile Safari/537.36” | TLSv1.3 | 2.440 2.462 2.461 – 0 NC:000000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:22:13:42 +0000] “GET /checkout HTTP/2.0” 301 0 “-” “Mozilla/5.0 (Linux; Android 10; SM-G965U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.114 Mobile Safari/537.36” | TLSv1.3 | 2.232 2.250 2.250 BYPASS 0 NC:320000 UP:SKIP_CACHE_SET_COOKIE
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:22:13:45 +0000] “GET /checkout/ HTTP/2.0” 200 238261 “-” “Mozilla/5.0 (Linux; Android 10; SM-G965U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.114 Mobile Safari/537.36” | TLSv1.3 | 2.804 2.920 2.940 BYPASS 0 NC:320000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:22:13:49 +0000] “POST /?wc-ajax=update_order_review HTTP/2.0” 200 30861 “-” “Mozilla/5.0 (Linux; Android 10; SM-G965U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.114 Mobile Safari/537.36” | TLSv1.3 | 4.034 4.051 4.052 – 0 NC:300000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:22:13:51 +0000] “POST /?wc-ajax=ppc-data-client-id HTTP/2.0” 200 537 “-” “Mozilla/5.0 (Linux; Android 10; SM-G965U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.114 Mobile Safari/537.36” | TLSv1.3 | 1.241 1.267 1.268 – 0 NC:300000 UP:-DT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:22:14:54 +0000] “GET /?post_type=product HTTP/1.1” 200 129593 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0” | TLSv1.3 | – – 0.088 HIT 0 NC:000000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:22:14:56 +0000] “POST /?wc-ajax=add_to_cart HTTP/2.0” 200 8722 “-” “Mozilla/5.0 (Linux; Android 11; CPH2025) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Mobile Safari/537.36 EdgA/93.0.961.69” | TLSv1.3 | 2.505 2.531 2.531 – 0 NC:000000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:22:14:58 +0000] “GET /checkout HTTP/2.0” 301 0 “-” “Mozilla/5.0 (Linux; Android 11; CPH2025) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Mobile Safari/537.36 EdgA/93.0.961.69” | TLSv1.3 | 1.649 1.667 1.666 BYPASS 0 NC:320000 UP:SKIP_CACHE_SET_COOKIE
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:22:15:01 +0000] “GET /checkout/ HTTP/2.0” 200 238261 “-” “Mozilla/5.0 (Linux; Android 11; CPH2025) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Mobile Safari/537.36 EdgA/93.0.961.69” | TLSv1.3 | 3.019 3.128 3.156 BYPASS 0 NC:320000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:22:15:06 +0000] “POST /?wc-ajax=update_order_review HTTP/2.0” 200 30861 “-” “Mozilla/5.0 (Linux; Android 11; CPH2025) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Mobile Safari/537.36 EdgA/93.0.961.69” | TLSv1.3 | 4.773 4.797 4.798 – 0 NC:300000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:22:15:08 +0000] “POST /?wc-ajax=ppc-data-client-id HTTP/2.0” 200 537 “-” “Mozilla/5.0 (Linux; Android 11; CPH2025) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Mobile Safari/537.36 EdgA/93.0.961.69” | TLSv1.3 | 1.462 1.489 1.489 – 0 NC:300000 UP:-DT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:23:19:37 +0000] “GET /?post_type=product HTTP/1.1” 200 129593 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0” | TLSv1.3 | – – 0.090 HIT 0 NC:000000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:23:19:39 +0000] “POST /?wc-ajax=add_to_cart HTTP/2.0” 200 8722 “-” “Mozilla/5.0 (Linux; Android 9; Redmi Note 8T Build/PKQ1.190616.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/92.0.4515.131 Mobile Safari/537.36” | TLSv1.3 | 1.729 1.759 1.759 – 0 NC:000000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:23:19:41 +0000] “GET /checkout HTTP/2.0” 301 0 “-” “Mozilla/5.0 (Linux; Android 9; Redmi Note 8T Build/PKQ1.190616.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/92.0.4515.131 Mobile Safari/537.36” | TLSv1.3 | 1.912 1.927 1.927 BYPASS 0 NC:320000 UP:SKIP_CACHE_SET_COOKIE
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:23:19:43 +0000] “GET /checkout/ HTTP/2.0” 200 238261 “-” “Mozilla/5.0 (Linux; Android 9; Redmi Note 8T Build/PKQ1.190616.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/92.0.4515.131 Mobile Safari/537.36” | TLSv1.3 | 2.542 2.629 2.676 BYPASS 0 NC:320000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:23:19:49 +0000] “POST /?wc-ajax=update_order_review HTTP/2.0” 200 30861 “-” “Mozilla/5.0 (Linux; Android 9; Redmi Note 8T Build/PKQ1.190616.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/92.0.4515.131 Mobile Safari/537.36” | TLSv1.3 | 5.381 5.398 5.398 – 0 NC:300000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:23:19:51 +0000] “POST /?wc-ajax=ppc-data-client-id HTTP/2.0” 200 537 “-” “Mozilla/5.0 (Linux; Android 9; Redmi Note 8T Build/PKQ1.190616.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/92.0.4515.131 Mobile Safari/537.36” | TLSv1.3 | 1.563 1.580 1.580 – 0 NC:300000 UP:-DT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:23:42:54 +0000] “GET /?post_type=product HTTP/1.1” 200 129593 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0” | TLSv1.3 | – – 0.096 HIT 0 NC:000000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:23:42:56 +0000] “POST /?wc-ajax=add_to_cart HTTP/2.0” 200 8722 “-” “Mozilla/5.0 (Linux; Android 7.0; BLADE V8 SE) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.127 Mobile Safari/537.36” | TLSv1.3 | 1.782 1.809 1.809 – 0 NC:000000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:23:42:58 +0000] “GET /checkout HTTP/2.0” 301 0 “-” “Mozilla/5.0 (Linux; Android 7.0; BLADE V8 SE) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.127 Mobile Safari/537.36” | TLSv1.3 | 1.594 1.607 1.608 BYPASS 0 NC:320000 UP:SKIP_CACHE_SET_COOKIE
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:23:43:01 +0000] “GET /checkout/ HTTP/2.0” 200 238261 “-” “Mozilla/5.0 (Linux; Android 7.0; BLADE V8 SE) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.127 Mobile Safari/537.36” | TLSv1.3 | 3.097 3.190 3.238 BYPASS 0 NC:320000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:23:43:08 +0000] “POST /?wc-ajax=update_order_review HTTP/2.0” 200 30861 “-” “Mozilla/5.0 (Linux; Android 7.0; BLADE V8 SE) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.127 Mobile Safari/537.36” | TLSv1.3 | 6.102 6.126 6.125 – 0 NC:300000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:23:43:09 +0000] “POST /?wc-ajax=ppc-data-client-id HTTP/2.0” 200 537 “-” “Mozilla/5.0 (Linux; Android 7.0; BLADE V8 SE) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.127 Mobile Safari/537.36” | TLSv1.3 | 1.415 1.433 1.432 – 0 NC:300000 UP:-DT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:23:48:37 +0000] “GET /?post_type=product HTTP/1.1” 200 129593 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0” | TLSv1.3 | – – 0.098 HIT 0 NC:000000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:23:48:39 +0000] “POST /?wc-ajax=add_to_cart HTTP/2.0” 200 8722 “-” “Mozilla/5.0 (Linux; Android 8.1.0; TM-5075 Build/OPM2.171019.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.96 Mobile Safari/537.36” | TLSv1.3 | 2.144 2.170 2.170 – 0 NC:000000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:23:48:41 +0000] “GET /checkout HTTP/2.0” 301 0 “-” “Mozilla/5.0 (Linux; Android 8.1.0; TM-5075 Build/OPM2.171019.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.96 Mobile Safari/537.36” | TLSv1.3 | 1.839 1.853 1.853 BYPASS 0 NC:320000 UP:SKIP_CACHE_SET_COOKIE
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:23:48:45 +0000] “GET /checkout/ HTTP/2.0” 200 238261 “-” “Mozilla/5.0 (Linux; Android 8.1.0; TM-5075 Build/OPM2.171019.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.96 Mobile Safari/537.36” | TLSv1.3 | 3.696 3.783 3.837 BYPASS 0 NC:320000 UP:-
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:23:48:49 +0000] “POST /?wc-ajax=update_order_review HTTP/2.0” 200 30861 “-” “Mozilla/5.0 (Linux; Android 8.1.0; TM-5075 Build/OPM2.171019.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.96 Mobile Safari/537.36” | TLSv1.3 | 3.987 4.004 4.006 – 0 NC:300000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [27/Aug/2025:23:48:50 +0000] “POST /?wc-ajax=ppc-data-client-id HTTP/2.0” 200 537 “-” “Mozilla/5.0 (Linux; Android 8.1.0; TM-5075 Build/OPM2.171019.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.96 Mobile Safari/537.36” | TLSv1.3 | 1.375 1.395 1.394 – 0 NC:300000 UP:-DT
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:00:38 +0000] “GET /?post_type=product HTTP/1.1” 200 129593 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0” | TLSv1.3 | – – 0.098 HIT 0 NC:000000 UP:-
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:00:40 +0000] “POST /?wc-ajax=add_to_cart HTTP/2.0” 200 8722 “-” “Mozilla/5.0 (Linux; Android 7.1.2; Redmi 4X) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.60 Mobile Safari/537.36,gzip(gfe),gzip(gfe)” | TLSv1.3 | 2.480 2.514 2.515 – 0 NC:000000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:00:43 +0000] “GET /checkout HTTP/2.0” 301 0 “-” “Mozilla/5.0 (Linux; Android 7.1.2; Redmi 4X) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.60 Mobile Safari/537.36,gzip(gfe),gzip(gfe)” | TLSv1.3 | 2.096 2.109 2.109 BYPASS 0 NC:320000 UP:SKIP_CACHE_SET_COOKIE
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:00:46 +0000] “GET /checkout/ HTTP/2.0” 200 238261 “-” “Mozilla/5.0 (Linux; Android 7.1.2; Redmi 4X) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.60 Mobile Safari/537.36,gzip(gfe),gzip(gfe)” | TLSv1.3 | 3.117 3.217 3.257 BYPASS 0 NC:320000 UP:-
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:00:52 +0000] “POST /?wc-ajax=update_order_review HTTP/2.0” 200 30861 “-” “Mozilla/5.0 (Linux; Android 7.1.2; Redmi 4X) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.60 Mobile Safari/537.36,gzip(gfe),gzip(gfe)” | TLSv1.3 | 5.716 5.731 5.732 – 0 NC:300000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:00:53 +0000] “POST /?wc-ajax=ppc-data-client-id HTTP/2.0” 200 537 “-” “Mozilla/5.0 (Linux; Android 7.1.2; Redmi 4X) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.60 Mobile Safari/537.36,gzip(gfe),gzip(gfe)” | TLSv1.3 | 1.482 1.509 1.509 – 0 NC:300000 UP:-DT
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:03:30 +0000] “GET /?post_type=product HTTP/1.1” 200 129593 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0” | TLSv1.3 | – – 0.101 HIT 0 NC:000000 UP:-
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:03:33 +0000] “POST /?wc-ajax=add_to_cart HTTP/2.0” 200 8722 “-” “Mozilla/5.0 (Linux; Android 7.0; LGMP260) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.105 Mobile Safari/537.36” | TLSv1.3 | 2.514 2.546 2.547 – 0 NC:000000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:03:35 +0000] “GET /checkout HTTP/2.0” 301 0 “-” “Mozilla/5.0 (Linux; Android 7.0; LGMP260) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.105 Mobile Safari/537.36” | TLSv1.3 | 2.285 2.303 2.304 BYPASS 0 NC:320000 UP:SKIP_CACHE_SET_COOKIE
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:03:38 +0000] “GET /checkout/ HTTP/2.0” 200 238261 “-” “Mozilla/5.0 (Linux; Android 7.0; LGMP260) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.105 Mobile Safari/537.36” | TLSv1.3 | 2.461 2.559 2.600 BYPASS 0 NC:320000 UP:-
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:03:43 +0000] “POST /?wc-ajax=update_order_review HTTP/2.0” 200 30861 “-” “Mozilla/5.0 (Linux; Android 7.0; LGMP260) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.105 Mobile Safari/537.36” | TLSv1.3 | 5.032 5.059 5.058 – 0 NC:300000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:03:45 +0000] “POST /?wc-ajax=ppc-data-client-id HTTP/2.0” 200 537 “-” “Mozilla/5.0 (Linux; Android 7.0; LGMP260) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.105 Mobile Safari/537.36” | TLSv1.3 | 1.454 1.487 1.487 – 0 NC:300000 UP:-DT
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:13:56 +0000] “GET /?post_type=product HTTP/1.1” 200 129593 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0” | TLSv1.3 | – – 0.090 HIT 0 NC:000000 UP:-
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:13:59 +0000] “POST /?wc-ajax=add_to_cart HTTP/2.0” 200 8722 “-” “Mozilla/5.0 (Linux; Android 8.0.0; SM-G950U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.101 Mobile Safari/537.36” | TLSv1.3 | 2.235 2.265 2.265 – 0 NC:000000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:14:02 +0000] “GET /checkout HTTP/2.0” 301 0 “-” “Mozilla/5.0 (Linux; Android 8.0.0; SM-G950U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.101 Mobile Safari/537.36” | TLSv1.3 | 2.591 2.609 2.609 BYPASS 0 NC:320000 UP:SKIP_CACHE_SET_COOKIE
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:14:05 +0000] “GET /checkout/ HTTP/2.0” 200 238261 “-” “Mozilla/5.0 (Linux; Android 8.0.0; SM-G950U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.101 Mobile Safari/537.36” | TLSv1.3 | 3.141 3.901 3.900 BYPASS 0 NC:320000 UP:-
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:14:10 +0000] “POST /?wc-ajax=update_order_review HTTP/2.0” 200 30861 “-” “Mozilla/5.0 (Linux; Android 8.0.0; SM-G950U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.101 Mobile Safari/537.36” | TLSv1.3 | 4.824 4.849 4.850 – 0 NC:300000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:14:12 +0000] “POST /?wc-ajax=ppc-data-client-id HTTP/2.0” 200 537 “-” “Mozilla/5.0 (Linux; Android 8.0.0; SM-G950U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.101 Mobile Safari/537.36” | TLSv1.3 | 1.263 1.284 1.284 – 0 NC:300000 UP:-DT
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:15:18 +0000] “GET /?post_type=product HTTP/1.1” 200 129593 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0” | TLSv1.3 | – – 0.117 HIT 0 NC:000000 UP:-
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:15:21 +0000] “POST /?wc-ajax=add_to_cart HTTP/2.0” 200 8722 “-” “Mozilla/5.0 (Linux; U; Android 4.2.2; ru-ru; IdeaTab S6000-F Build/JDQ39) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30 Viber/13.2.0.8” | TLSv1.3 | 2.839 2.866 2.866 – 0 NC:000000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:15:23 +0000] “GET /checkout HTTP/2.0” 301 0 “-” “Mozilla/5.0 (Linux; U; Android 4.2.2; ru-ru; IdeaTab S6000-F Build/JDQ39) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30 Viber/13.2.0.8” | TLSv1.3 | 2.360 2.377 2.376 BYPASS 0 NC:320000 UP:SKIP_CACHE_SET_COOKIE
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:15:27 +0000] “GET /checkout/ HTTP/2.0” 200 238261 “-” “Mozilla/5.0 (Linux; U; Android 4.2.2; ru-ru; IdeaTab S6000-F Build/JDQ39) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30 Viber/13.2.0.8” | TLSv1.3 | 2.961 3.053 3.093 BYPASS 0 NC:320000 UP:-
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:15:31 +0000] “POST /?wc-ajax=update_order_review HTTP/2.0” 200 30861 “-” “Mozilla/5.0 (Linux; U; Android 4.2.2; ru-ru; IdeaTab S6000-F Build/JDQ39) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30 Viber/13.2.0.8” | TLSv1.3 | 4.333 4.355 4.355 – 0 NC:300000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:15:33 +0000] “POST /?wc-ajax=ppc-data-client-id HTTP/2.0” 200 537 “-” “Mozilla/5.0 (Linux; U; Android 4.2.2; ru-ru; IdeaTab S6000-F Build/JDQ39) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30 Viber/13.2.0.8” | TLSv1.3 | 1.499 1.520 1.520 – 0 NC:300000 UP:-DT
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:33:22 +0000] “GET /?post_type=product HTTP/1.1” 200 129593 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0” | TLSv1.3 | – – 0.091 HIT 0 NC:000000 UP:-
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:33:24 +0000] “POST /?wc-ajax=add_to_cart HTTP/2.0” 200 8722 “-” “Mozilla/5.0 (Linux; Android 7.0; ASUS_X008D Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/93.0.4577.62 Mobile Safari/537.36” | TLSv1.3 | 2.464 2.489 2.489 – 0 NC:000000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:33:26 +0000] “GET /checkout HTTP/2.0” 301 0 “-” “Mozilla/5.0 (Linux; Android 7.0; ASUS_X008D Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/93.0.4577.62 Mobile Safari/537.36” | TLSv1.3 | 1.886 1.899 1.899 BYPASS 0 NC:320000 UP:SKIP_CACHE_SET_COOKIE
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:33:30 +0000] “GET /checkout/ HTTP/2.0” 200 238261 “-” “Mozilla/5.0 (Linux; Android 7.0; ASUS_X008D Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/93.0.4577.62 Mobile Safari/537.36” | TLSv1.3 | 2.953 3.054 3.088 BYPASS 0 NC:320000 UP:-
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:33:35 +0000] “POST /?wc-ajax=update_order_review HTTP/2.0” 200 30861 “-” “Mozilla/5.0 (Linux; Android 7.0; ASUS_X008D Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/93.0.4577.62 Mobile Safari/537.36” | TLSv1.3 | 4.985 5.007 5.007 – 0 NC:300000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:33:36 +0000] “POST /?wc-ajax=ppc-data-client-id HTTP/2.0” 200 537 “-” “Mozilla/5.0 (Linux; Android 7.0; ASUS_X008D Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/93.0.4577.62 Mobile Safari/537.36” | TLSv1.3 | 1.298 1.321 1.321 – 0 NC:300000 UP:-DT
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:38:40 +0000] “GET /?post_type=product HTTP/1.1” 200 129593 “-” “Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0” | TLSv1.3 | – – 0.093 HIT 0 NC:000000 UP:-
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:38:42 +0000] “POST /?wc-ajax=add_to_cart HTTP/2.0” 200 8722 “-” “Mozilla/5.0 (Linux; Android 9; NX629J) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.127 Mobile Safari/537.36” | TLSv1.3 | 1.806 1.835 1.837 – 0 NC:000000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:38:45 +0000] “GET /checkout HTTP/2.0” 301 0 “-” “Mozilla/5.0 (Linux; Android 9; NX629J) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.127 Mobile Safari/537.36” | TLSv1.3 | 2.878 2.902 2.902 BYPASS 0 NC:320000 UP:SKIP_CACHE_SET_COOKIE
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:38:48 +0000] “GET /checkout/ HTTP/2.0” 200 238261 “-” “Mozilla/5.0 (Linux; Android 9; NX629J) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.127 Mobile Safari/537.36” | TLSv1.3 | 2.539 2.629 2.679 BYPASS 0 NC:320000 UP:-
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:38:52 +0000] “POST /?wc-ajax=update_order_review HTTP/2.0” 200 30861 “-” “Mozilla/5.0 (Linux; Android 9; NX629J) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.127 Mobile Safari/537.36” | TLSv1.3 | 4.469 4.489 4.490 – 0 NC:300000 UP:SKIP_CACHE_SET_COOKIEDT
    209.200.246.87 http://www.mysite.com – [28/Aug/2025:00:38:54 +0000] “POST /?wc-ajax=ppc-data-client-id HTTP/2.0” 200 537 “-” “Mozilla/5.0 (Linux; Android 9; NX629J) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.127 Mobile Safari/537.36” | TLSv1.3 | 1.472 1.490 1.491 – 0 NC:300000 UP:-DT

    Thread Starter madhumita1188

    (@madhumita1188)

    hello @riser..if these are attacks then how to deal with this using wordfence..

    Plugin Support Krystian Syde

    (@inpsydekrystian)

    Hello @madhumita1188

    Please submit a ticket through our service desk. We have several ways to mitigate the problem at this point.

    Please include the URL of this thread in your ticket for reference.

    Kind regards,
    Krystian

Viewing 14 replies - 1 through 14 (of 14 total)

The topic ‘woocommerce paypal payments error’ is closed to new replies.