I'm running a multisite network on Wordpress 3.6
with the W3 Super Cache plugin for performance. I'm on a virtual dedicated server, but the Wordpress dashboard started loading so painfully slow, it was excruciating.
So I did a quick search and found this "handy" tip on WPMU. The author suggested that using zlib compression
would speed up my load times x3. So I took the advice and pasted this snippet in the header of my theme:
<?php
ini_set(’zlib.output_compression’, ‘On’);
ini_set(’zlib.output_compression_level’, ‘1′);
?>
Instead of "instantly seeing a huge performance improvement," it screwed up something with the blogs.dir
and now all uploads and media are broken links. I removed the above PHP snippet, but the links are still dead. I looked in .htaccess
and wp-config
and didn't see anything input from zlib.
Can anyone help me find a solution to this problem?