I’m using mod_deflate for php/html files. I have some instances where this is causing some display problems for formatted code. Is there anyway to ignore mod_deflate in certain instances?
Thank you!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
mod_deflateshould not remove tabs and returns. Its job is to compress and uncompress data with 0% modification.I don’t fully understand the situation, but my guess this is a Linux vs. Windows issue.
Maybe you are working with files that have only a Unix line break
\ninstead of a Windows line break\r\n, and CodeMirror isn’t correctly getting that?If this is not it, maybe add more information about how those files get from
mod_deflateinto your editor.