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:
public $gzip = '1';
1
on 0
to make it look like this:public $gzip = '0';