Re: [EMAIL PROTECTED] Apache Cache Control

2007-08-14 Thread gerocoma-forophp
Solved. The Cache-Control headers were been added by PHP. php.ini had the directive: session.autostart = 1 which automatically initiates a session for every page. That directive in conjunction with: session.cache_limiter = nocache where creating the headers for every page (php & html).

Re: [EMAIL PROTECTED] Apache Cache Control

2007-08-14 Thread gerocoma-forophp
Confirmed: No Proxy in Between. --- [EMAIL PROTECTED] escribió: > This is my LoadModules section Joshua: > > LoadModule access_module modules/mod_access.so > LoadModule actions_module modules/mod_actions.so > LoadModule alias_module modules/mod_alias.so > LoadModule asis_module modules/mod_

Re: [EMAIL PROTECTED] Apache Cache Control

2007-08-14 Thread gerocoma-forophp
This is my LoadModules section Joshua: LoadModule access_module modules/mod_access.so LoadModule actions_module modules/mod_actions.so LoadModule alias_module modules/mod_alias.so LoadModule asis_module modules/mod_asis.so LoadModule auth_module modules/mod_auth.so #LoadModule auth_anon_module mod

Re: [EMAIL PROTECTED] Apache Cache Control

2007-08-14 Thread Joshua Slive
On 8/14/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > I tried this suggestion but it dind't work. > > I've even disabled the negotation module and the > Cache-Control headers are still been sent > > I really don't know where are they coming from... > > HTML pages also have them, not only p

Re: [EMAIL PROTECTED] Apache Cache Control

2007-08-14 Thread gerocoma-forophp
I tried this suggestion but it dind't work. I've even disabled the negotation module and the Cache-Control headers are still been sent I really don't know where are they coming from... HTML pages also have them, not only php. mod_headers also disabled... More suggestions? Thanks. --- Vinc

Re: [EMAIL PROTECTED] Apache Cache Control

2007-08-14 Thread Vincent Bray
On 14/08/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > I found, that mod_expires automatically adds > Cache-Control headers depending on the activated > directives of that module. > > However, this module is disabled in my http.conf and > no .htaccess files are around... Complete guess.. If y

Re: [EMAIL PROTECTED] Apache Cache Control

2007-08-14 Thread gerocoma-forophp
I found, that mod_expires automatically adds Cache-Control headers depending on the activated directives of that module. However, this module is disabled in my http.conf and no .htaccess files are around... suggestions? Thanks. --- [EMAIL PROTECTED] escribió: > Hello, > > I have a Apache/2.0.

[EMAIL PROTECTED] Apache Cache Control

2007-08-13 Thread gerocoma-forophp
Hello, I have a Apache/2.0.54 (Win32) which is serving every element (html, php, gif...) with the following headers: Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 I've searched every place I know (httpd.conf, .htaccess, php.ini), but I can't still find why o wher