I keep getting the error:
Warning: gzuncompress() [function.gzuncompress]: data error in /home/user/public_html/site/wp-includes/http.php on line 1792
When fetching posts. How do I fix this?
I keep getting the error:
Warning: gzuncompress() [function.gzuncompress]: data error in /home/user/public_html/site/wp-includes/http.php on line 1792
When fetching posts. How do I fix this?
Yes, I keep finding this in the error logs as well.
I also am getting this. I've found a fix for the same bug on a plugin, and that was fixed by changing the BLOB field on the plugin's table to a MEDIUMBLOB. However, I don't know which field it would be, or even if it's the same problem. It seems to be WordPress itself (the bug is in the file http.php), not a plugin.
I'm trying this:
find the function decompress( $compressed, $length = null ) {
in the file wp-includes/http.php and comment out these lines:
`$decompressed = gzinflate( $compressed );
if ( false !== $decompressed )
return $decompressed;
$decompressed = gzuncompress( $compressed );
if ( false !== $decompressed )
return $decompressed;`
(you do this by putting /* at the beginning and */ at the end)
If I don't come back in a week to say it failed, then it worked!!
You must log in to post.