From Http to Https - Now browser gives ERR_CONTENT_DECODING_FAILED error in console |
I saw topic where you find such an advice.
Have you at first tried solutions from this and this answers? Try those if you didn't (in order I posted those). Also for a while, there is sort of common functions used in custom created helper like in this page: PHP Code: <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); PHP Code: $autoload['helper'] = array('url', 'ssl'); Then, within `public function __construct()` of every controller requiring SSL, add the following: PHP Code: force_ssl(); But check first if you can solve it on server level. |
Messages In This Thread |
From Http to Https - Now browser gives ERR_CONTENT_DECODING_FAILED error in console - by MasoodRehman - 04-03-2016, 04:58 AM
RE: From Http to Https - by Tpojka - 04-03-2016, 06:16 AM
RE: From Http to Https - by MasoodRehman - 04-03-2016, 09:40 AM
RE: From Http to Https - by MasoodRehman - 04-03-2016, 12:38 PM
RE: From Http to Https - by Tpojka - 04-03-2016, 12:59 PM
RE: From Http to Https - by MasoodRehman - 04-04-2016, 12:58 PM
RE: From Http to Https - Now browser gives ERR_CONTENT_DECODING_FAILED error in console - by Tpojka - 04-04-2016, 01:27 PM
RE: From Http to Https - Now browser gives ERR_CONTENT_DECODING_FAILED error in console - by MasoodRehman - 04-04-2016, 08:42 PM
RE: From Http to Https - Now browser gives ERR_CONTENT_DECODING_FAILED error in console - by InsiteFX - 04-04-2016, 04:35 PM
RE: From Http to Https - Now browser gives ERR_CONTENT_DECODING_FAILED error in console - by MasoodRehman - 04-04-2016, 08:43 PM
|