Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
2.7k views
in Q2A Core by

I have Q2A in my host but i see this error :(on fire fox) Content Encoding Error
      
The page you are trying to view cannot be shown because it uses an invalid or unsupported form of compression.    
    

*   Please contact the website owners to inform them of this problem.

In IE :

Internet Explorer cannot display the webpage




        
        
      


      
     

1 Answer

+3 votes
by

It would be helpful if you posted a link but I imagine the problem is that Q2A's use of HTML compression (gzip) is somehow incompatible with your server's configuration. You can switch compression off by changing this line in qa-config.php:

define('QA_HTML_COMPRESSION', true);

... to ...

define('QA_HTML_COMPRESSION', false);

by
edited by
Thank you very much. Issue resolved.
...