Jon W
Well-known member
Currently in order to run a XenForo site on Zend Server with Z-Ray enabled, you have to add the following to config.php:
so that it can add the header/footer code to your site. If you don't do this it tries to add it to the CSS, and this causes all sorts of weirdness.
I appreciate that this is really an issue with Zend Server as having a content length header is perfectly normal, but perhaps XenForo could check for Z-Ray being enabled and disable the content length header in this instance?
PHP:
$config['enableContentLength'] = false;
I appreciate that this is really an issue with Zend Server as having a content length header is perfectly normal, but perhaps XenForo could check for Z-Ray being enabled and disable the content length header in this instance?
Upvote
0