Thanks so much for looking into this with me! I'm getting desperate.
On Jan 24, 3:13 am, Keynan Pratt <
rails-mailing-l...@andreas-s.net>
wrote:
> 2 questions:
>
> 1) do you have caching disabled (sorry but tech support always has to
> know if the computers plugged in).
Yes, and have a used all browsers with the same the results.
> 2) If in firefox you go to Tools/page_info what are the values of:
All of the results are taken from looking at the information on the
css being linked on the page using the following link:
<link href="/css/colorpicker.css" media="screen" rel="stylesheet"
type="text/css" />
The following results are using the Rails default headers:
Cache Source: Disk cache
Expires: Not specified
Meta: [nothing]
Also, the response headers (according to the web developer plugin):
Date: Thu, 24 Jan 2008 14:00:47 GMT
Status: 304 Not Modified
X-Runtime: 0.08278
Etag: "aeafc040943fac69eb986a0f90e79063"
Cache-Control: private, max-age=0, must-revalidate
Server: Mongrel 1.0.1
Content-Type: text/css; charset=utf-8
Content-Length: 2452
200 OK
The following results are after I have switched the headers['Cache-
Control'] to 'public':
Cache Source: Disk cache
Expires: Not specified
Meta: [nothing]
Also, the response headers (according to the web developer plugin):
Date: Thu, 24 Jan 2008 13:52:40 GMT
Status: 304 Not Modified
X-Runtime: 0.08174
Etag: "aeafc040943fac69eb986a0f90e79063"
Cache-Control: public
Server: Mongrel 1.0.1
Content-Type: text/css; charset=utf-8
Content-Length: 2452
200 OK