Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Does Vanilla support PHP Output Control functions?
Hello!
I use mod_gzip on my site Limundo
For Vanilla it did not work: Limundo Cafe.
Every site works great except for the forum.
I asked on another forum this question and they told me that maybe Vanilla did not support PHP Output Control Functions.
Can anybody help?
Like Mark, or someone who is using gzip with Vanilla
I use mod_gzip on my site Limundo
For Vanilla it did not work: Limundo Cafe.
Every site works great except for the forum.
I asked on another forum this question and they told me that maybe Vanilla did not support PHP Output Control Functions.
Can anybody help?
Like Mark, or someone who is using gzip with Vanilla
0
This discussion has been closed.
Comments
(if i'm wrong, someone please correct me)
I am not sure about mod_gzip, but couldn't you get the same result by turning on PHP output buffering in an extension, then locate a delegate that fires on page unload and return the output gziped?
::goes to check php.net::
It might be as simple as adding this one line to an extension:
ob_start("ob_gzhandler");
From: this pageob_start("ob_gzhandler");
Seems to work fine so far. Though I havent checked everything. Perhaps ajax components may complain, i dunno.
Needs a bunch of testign though. And i cant do that on my little local installation. A somewhat bigger forum should do that.