WAMP/Wordpress - cURL error 28: Operation timed out after 10001 milliseconds with 0 bytes received
PHP Snippet 1:
max_execution_time = 30
max_input_time = 300
memory_limit = 128M
post_max_size = 32M
upload_max_size = 32M
PHP Snippet 2:
$response = wp_remote_get( $url,
array(
'timeout' => 60, // <-- this one increase to 120 or more
)
);