2.14.2.1.1. Error ERR_CONTENT_DECODING_FAILED

If you get an "ERR_CONTENT_DECODING_FAILED" error when opening the site in your browser, the reason may be that gzip compression is enabled in the admin panel of the site itself. Since compression is enabled by default on the hosting, enabling compression on the site results in the data being compressed twice and the browser being unable to extract it.

To fix the situation, do the following:

  1. Find the following line:
    public $gzip = '1';
  2. Replace 1 with 0 so that it looks like this:
    public $gzip = '0';
  3. Check the site operation.
Content