Make WordPress Core

Changes between Initial Version and Version 9 of Ticket #59842


Ignore:
Timestamp:
11/08/2023 07:07:50 PM (18 months ago)
Author:
sabernhardt
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #59842

    • Property Keywords has-patch added
    • Property Version changed from to 6.4
    • Property Severity changed from normal to critical
    • Property Milestone changed from Awaiting Review to 6.4.1
  • Ticket #59842 – Description

    initial v9  
    11Hello,
    22
    3 Wordpress 6.4 update caused wp_remote_get to give "cURL error 28: Operation timed out" errors.
     3WordPress 6.4 update caused `wp_remote_get` to give "cURL error 28: Operation timed out" errors.
    44
    5 I tested on two fresh wordpress installations.
     5I tested on two fresh WordPress installations.
    66
    77How to reproduce:
    88
    99functions.php:
     10{{{
    1011$request = wp_remote_get( 'https://example.com/test.json' );
    1112var_dump($request);
     13}}}
    1214
    13 Wordpress 6.4:
     15WordPress 6.4:
     16{{{
    1417object(WP_Error)#4571 (3) { ["errors"]=> array(1) { ["http_request_failed"]=> array(1) { [0]=> string(95) "cURL error 28: Operation timed out after 5001 milliseconds with 2050 out of 2766 bytes received" } } ["error_data"]=> array(0) { } ["additional_data":protected]=> array(0) { } }
     18}}}
    1519
    16 
    17 Wordpress 6.3.2:
     20WordPress 6.3.2:
    1821valid json data in 1 sec
    1922