How to disable Gzip compression by PHP script on FastCGI
Posted
by Josef Sábl
on Server Fault
See other posts from Server Fault
or by Josef Sábl
Published on 2010-05-25T11:33:33Z
Indexed on
2010/05/25
11:41 UTC
Read the original article
Hit count: 362
We used this PHP code to disable gzip compression for specific scripts
@apache_setenv('no-gzip', 1);
But our admin migrated to FastCGI and this does not work anymore. How to do it?
Thanks
© Server Fault or respective owner