Feed Validator Results: http://www.archgfx.net/blog/index.php/feed/
i a sincerely apologize to everyone whose had to read all these geeky entries. regularly scheduled programming will resume shortly.
i had to change the following in /wp-includes/functions.php:
function gzip_compression() {
if ( !get_settings('gzipcompression') ) return false;
if ( extension_loaded('zlib') ) {
ob_start('ob_gzhandler');
} }
to:
function gzip_compression() {
if ( !get_settings('gzipcompression') ) return false;
} }
UPDATE: it occurs to me that valid xml should equal functioning pingbacks










2 Trackbacks/Pingbacks
26 Jan 2007 at 4:09 pm
Jizzy Handled « SunBurntKamel
[...] ob_gzhandler() hack that fixes my bug, (the same hack as last time didn’t fix [...]
05 Mar 2007 at 2:29 pm
four times in two months « SunBurntKamel
[...] four times in two months i upgraded my blog again last night, to help joen with some bugsquashing on Fauna RC2. after not touching my wordpress install for the better part of a year, it’s odd to be updating it this many times in 2 months. I still had to do a manual hack to get my WYSIWYG tabbed editor to work. Nazgul’s suggesting that i should keep doing this, so i used my handy new computer hacking SVN skillz to make a patch, so i don’t have to work so hard next time: UPDATE: something in 2.1.1/2.1.2 changed, and my patch stopped fixing it. this is a new version. you may also need to hack gzhandler() out of functions.php. [...]
Post a Comment