Welcome Guest, Not a member yet? Register   Sign In
Headers set to no cache are not honored?
#6

[eluser]drewbee[/eluser]
I actually just popped open the output class and I can see any feasible reason it is not behaving with the same behavior.

Code:
/**
     * Set Header
     *
     * Lets you set a server header which will be outputted with the final display.
     *
     * Note:  If a file is cached, headers will not be sent.  We need to figure out
     * how to permit header data to be saved with the cache data...
     *
     * @access    public
     * @param    string
     * @return    void
     */    
    function set_header($header, $replace = TRUE)
    {
        $this->headers[] = array($header, $replace);
    }

Code:
function _output // Snip....
        // Are there any server headers to send?
        if (count($this->headers) > 0)
        {
            foreach ($this->headers as $header)
            {
                @header($header[0], $header[1]);
            }
        }

Weird...


Messages In This Thread
Headers set to no cache are not honored? - by El Forum - 02-19-2009, 12:00 PM
Headers set to no cache are not honored? - by El Forum - 02-23-2009, 02:39 PM
Headers set to no cache are not honored? - by El Forum - 03-28-2009, 05:03 PM
Headers set to no cache are not honored? - by El Forum - 03-28-2009, 05:05 PM
Headers set to no cache are not honored? - by El Forum - 03-28-2009, 06:59 PM
Headers set to no cache are not honored? - by El Forum - 03-28-2009, 07:39 PM
Headers set to no cache are not honored? - by El Forum - 03-30-2009, 11:30 PM
Headers set to no cache are not honored? - by El Forum - 04-01-2009, 10:59 AM
Headers set to no cache are not honored? - by El Forum - 04-01-2009, 11:11 AM
Headers set to no cache are not honored? - by El Forum - 04-01-2009, 11:18 AM
Headers set to no cache are not honored? - by El Forum - 04-01-2009, 11:29 AM
Headers set to no cache are not honored? - by El Forum - 04-01-2009, 11:39 AM
Headers set to no cache are not honored? - by El Forum - 04-01-2009, 11:46 AM
Headers set to no cache are not honored? - by El Forum - 04-01-2009, 11:52 AM
Headers set to no cache are not honored? - by El Forum - 04-01-2009, 11:58 AM
Headers set to no cache are not honored? - by El Forum - 04-01-2009, 12:06 PM
Headers set to no cache are not honored? - by El Forum - 04-01-2009, 12:11 PM
Headers set to no cache are not honored? - by El Forum - 04-01-2009, 12:36 PM
Headers set to no cache are not honored? - by El Forum - 04-01-2009, 12:45 PM
Headers set to no cache are not honored? - by El Forum - 04-01-2009, 01:00 PM
Headers set to no cache are not honored? - by El Forum - 04-01-2009, 01:13 PM
Headers set to no cache are not honored? - by El Forum - 04-01-2009, 01:22 PM
Headers set to no cache are not honored? - by El Forum - 04-01-2009, 01:41 PM
Headers set to no cache are not honored? - by El Forum - 04-01-2009, 01:45 PM
Headers set to no cache are not honored? - by El Forum - 04-01-2009, 01:55 PM
Headers set to no cache are not honored? - by El Forum - 04-01-2009, 01:58 PM
Headers set to no cache are not honored? - by El Forum - 04-01-2009, 02:02 PM
Headers set to no cache are not honored? - by El Forum - 04-01-2009, 02:23 PM
Headers set to no cache are not honored? - by El Forum - 04-01-2009, 02:30 PM
Headers set to no cache are not honored? - by El Forum - 04-01-2009, 02:44 PM
Headers set to no cache are not honored? - by El Forum - 04-01-2009, 03:01 PM



Theme © iAndrew 2016 - Forum software by © MyBB