Changes between Initial Version and Version 9 of Ticket #59842
- Timestamp:
- 11/08/2023 07:07:50 PM (18 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #59842
- Property Keywords has-patch added
-
Property
Version
changed from
to
6.4
-
Property
Severity
changed from
normal
tocritical
-
Property
Milestone
changed from
Awaiting Review
to6.4.1
-
Ticket #59842 – Description
initial v9 1 1 Hello, 2 2 3 Word press 6.4 update caused wp_remote_getto give "cURL error 28: Operation timed out" errors.3 WordPress 6.4 update caused `wp_remote_get` to give "cURL error 28: Operation timed out" errors. 4 4 5 I tested on two fresh wordpress installations.5 I tested on two fresh WordPress installations. 6 6 7 7 How to reproduce: 8 8 9 9 functions.php: 10 {{{ 10 11 $request = wp_remote_get( 'https://example.com/test.json' ); 11 12 var_dump($request); 13 }}} 12 14 13 Wordpress 6.4: 15 WordPress 6.4: 16 {{{ 14 17 object(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 }}} 15 19 16 17 Wordpress 6.3.2: 20 WordPress 6.3.2: 18 21 valid json data in 1 sec 19 22