Forums

HTTP.php line error message with RSS feed (sidebar widget) (3 posts)

  1. invisiblepilot
    Member
    Posted 2 years ago #

    Trying to use the basic WP sidebar RSS widget - the list displays fine but I get the following error displayed immediately before the (seemingly correct) widget on load:

    Warning: gzinflate() [function.gzinflate]: data error in .../hi/wp-includes/http.php on line 1787

    When I open the http.php file and go to this area, I get this:

    class WP_Http_Encoding {
    
    	/**
    	 * Compress raw string using the deflate format.
    	 *
    	 * Supports the RFC 1951 standard.
    	 *
    	 * @since 2.8
    	 *
    	 * @param string $raw String to compress.
    	 * @param int $level Optional, default is 9. Compression level, 9 is highest.
    	 * @param string $supports Optional, not used. When implemented it will choose the right compression based on what the server supports.
    	 * @return string|bool False on failure.
    	 */
    	<strong>function compress( $raw, $level = 9, $supports = null ) {
    		return gzdeflate( $raw, $level );
    	}</strong>
    
    	/**

    Will someone please tell me how to handle it?
    Much appreciated - Thank you.

  2. invisiblepilot
    Member
    Posted 2 years ago #

    Figured it out.

  3. talon39
    Member
    Posted 2 years ago #

    Please share. I have a similar problem.

Topic Closed

This topic has been closed to new replies.

About this Topic