> I don't.  Wanna know how to get rid of it?  But fair warning, there might
> be problems.  If you can handle the risk for a little convience here goes:
>
> Comment this out in the ./htdocs/index.php3 file:
>
>
> /*
> header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
> header("Expires: " . gmdate("D, d M Y H:i:s") . " GMT");
> header("Cache-Control: no-cache, must-revalidate");
> header("Pragma: no-cache");
> */
>
> I hold NO WARRANTY to the above information.

As well you shouldn't.  If you remove the headers that prevent caching you
will be in serious trouble.  Consider what would happen if a proxy server
cached any of the pages.  That means the server isn't actually being
connected to, which means your session isn't being updated.  It also means
you're probably sharing a session with everyone on your side of the proxy
cache.  Now consider that most Internet users are using ISPs with a proxy
cache.  AOL uses one.

If you are using the guts of FreeTrade to serve a site that's not ecomm
(like www.clearink.com), then you're OK dropping the headers, of course,
because you aren't using sessions.  In that case you probably want to send
headers to suggest caching.  If you look at the source code to the Link
Conservatory you'll see I've done that very thing.

So, in summary, whether you like it or not, don't touch the anti-caching
headers in FreeTrade.

Leon



------------------------------------------------------------
To subscribe:    [EMAIL PROTECTED]
To unsubscribe:  [EMAIL PROTECTED]
Site:            http://www.working-dogs.com/freetrade/
Problems?:       [EMAIL PROTECTED]

Reply via email to