[wp-trac] [WordPress Trac] #53107: HTTPS Detect & Migrate feature breaking existing HTTPS

WordPress Trac noreply at wordpress.org
Tue Aug 26 09:41:55 UTC 2025


#53107: HTTPS Detect & Migrate feature breaking existing HTTPS
--------------------------+------------------------------
 Reporter:  nilltech      |       Owner:  (none)
     Type:  defect (bug)  |      Status:  new
 Priority:  normal        |   Milestone:  Awaiting Review
Component:  HTTP API      |     Version:  5.7.1
 Severity:  blocker       |  Resolution:
 Keywords:                |     Focuses:
--------------------------+------------------------------

Comment (by pmbaldha):

 You should add wp-content/mu-plugins/fix-http.php file with the below
 code:


 {{{#!php
 <?php
 add_filter( 'https_ssl_verify', '__return_false' );

 add_filter( 'http_request_args', 'custom_increase_http_timeout', 10, 2 );
 function custom_increase_http_timeout( $args, $url ) {
     $args['timeout'] = 60; // Set timeout to 60 seconds.
     return $args;
 }
 }}}

 and then check whether the issue fixed or not. Let me know.

-- 
Ticket URL: <https://core.trac.wordpress.org/ticket/53107#comment:2>
WordPress Trac <https://core.trac.wordpress.org/>
WordPress publishing platform


More information about the wp-trac mailing list