• A PHP session was created by a session_start() function call. This interferes with REST API and loopback requests. The session should be closed by session_write_close() before making any HTTP requests.

    on the file wpcaptcha.php you should fix line 40 to 44 with this

    if ( !session_id() )

    { session_start( [ ‘read_and_close’ => true, ] ); }

    I had to find it my way out

  • You must be logged in to reply to this review.