[thelist] problems with proxy in Barcelona area

Joshua Olson joshua at waetech.com
Mon Mar 17 05:41:26 CDT 2008


> -----Original Message-----
> From: Joan Olivé i Mallafrè
> Sent: Monday, March 17, 2008 6:01 AM
> 
> I'm very troubled due to the missfunction of the site: 
> www.cinesmontcada.com and concretelly to the proxy's 
> refreshment process

Joan,

Double check your HTTP response headers and make you are passing all the
cache-busting commands, such as Pragma, Cache-Control, Expires.  

PHP Example:

<?php
header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
header("Pragma: no-cache");
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past
?> 

ASP Example:

<% Response.CacheControl = "no-cache, must-revalidate" %>
<% Response.AddHeader "Pragma", "no-cache" %>
<% Response.Expires = -1 %>

Hope this helps,

Joshua

<><><><><><><><><><>
Joshua L. Olson
WAE Technologies, Inc.
Augusta, Georgia Web Design
http://www.waetech.com/
Phone: 706.210.0168
Fax: 707.988.0168
Private Enterprise Number: 28752

Portfolio:
http://www.waetech.com/design/portfolio/

Monitor bandwidth usage on IIS6 in real-time:
http://www.waetech.com/services/iisbm/ 



More information about the thelist mailing list