2.13.2.1.1. ERR_CONTENT_DECODING_FAILED error
If an error occurs when opening a website in a browser ERR_CONTENT_DECODING_FAILED
, the reason could be the inclusion of gzip compression in adminpanels the site itself. Since the compression on the hosting enabled by default, enabling compression on the site results in the data being compressed twice, which prevents the browser from unpacking it.
To fix the situation:
- Openup config file site.
- Find a line like this:
public $gzip = '1';
- Replace in it
1
on0
so that it looks like this:public $gzip = '0';
- Check the site is working.