Welcome Guest, Not a member yet? Register   Sign In
Implementing some code
#6

[eluser]Michael Wales[/eluser]
Experiment around line 172:

Code:
// Is compression requested?
if ($CFG->item('compress_output') === TRUE) {
    if (extension_loaded('zlib')) {
        if (isset($_SERVER['HTTP_ACCEPT_ENCODING']) AND strpos($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') !== FALSE) {
            ob_start('ob_gzhandler');
        }
    }
}

This is where CI is starting it's compression, which involves header changes - probably a good place for your to start modifying yours as well.


Messages In This Thread
Implementing some code - by El Forum - 09-14-2007, 07:09 AM
Implementing some code - by El Forum - 09-14-2007, 08:18 AM
Implementing some code - by El Forum - 09-14-2007, 08:22 AM
Implementing some code - by El Forum - 09-14-2007, 08:24 AM
Implementing some code - by El Forum - 09-14-2007, 08:34 AM
Implementing some code - by El Forum - 09-14-2007, 08:42 AM
Implementing some code - by El Forum - 09-14-2007, 08:44 AM
Implementing some code - by El Forum - 09-14-2007, 08:56 AM
Implementing some code - by El Forum - 09-14-2007, 09:02 AM
Implementing some code - by El Forum - 09-14-2007, 09:05 AM
Implementing some code - by El Forum - 09-14-2007, 09:09 AM
Implementing some code - by El Forum - 09-14-2007, 09:14 AM
Implementing some code - by El Forum - 09-15-2007, 11:23 PM



Theme © iAndrew 2016 - Forum software by © MyBB