Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Do you have <a href="https://httpd.apache.org/docs/current/fr/mod/mod_deflate.html" rel="noreferrer"><code>mod_deflate</code></a> installed? Try this instead and see if your error goes away.</p> <pre><code>&lt;ifModule mod_deflate.c&gt; &lt;Files *.html&gt; SetOutputFilter DEFLATE &lt;/Files&gt; &lt;/ifModule&gt; </code></pre> <p>If this resolves the 500 error, then you probably don't have <code>mod_deflate</code> installed. You can test it by visiting <a href="http://www.whatsmyip.org/http-compression-test/" rel="noreferrer">HTTP Compression Test</a>.</p> <p>If you have access, you may be able to enable it by uncommenting the following lines in your <code>httpd.conf</code> file.</p> <pre><code>LoadModule filter_module modules/mod_filter.so LoadModule deflate_module modules/mod_deflate.so </code></pre> <p>Then you will need to add an output type for each file type you wish to compress.</p> <pre><code>AddOutputFilterByType DEFLATE application/javascript AddOutputFilterByType DEFLATE application/x-javascript </code></pre> <p>As mentioned in the comments, <code>AddOutputFilterByType</code> depends on <a href="https://httpd.apache.org/docs/2.4/fr/mod/mod_filter.html" rel="noreferrer"><code>mod_filter</code></a>. If you still get a 500 error you should check that this module is loaded too.</p> <p>You can read more here: <a href="http://www.g-loaded.eu/2008/05/10/use-mod_deflate-to-compress-web-content-delivered-by-apache/" rel="noreferrer">Use mod_deflate to Compress Web Content delivered by Apache</a></p> <p>I can't find any documentation that suggests whether Siteground supports <code>mod_deflate</code> or not. Their KB suggests using gZip from PHP.</p> <p><a href="http://kb.siteground.com/article/How_to_enable_gZIP_compression_for_your_pages.html" rel="noreferrer">How to enable gZIP compression for your pages?</a><br> <a href="http://kb.siteground.com/article/How_to_compress_my_CSS_with_gZIP.html" rel="noreferrer">How to compress my CSS with gZIP?</a></p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload