[TYPO3-core] RFC: "Page is being generated" and search engines

Martin Kutschker Martin.Kutschker at blackbox.net
Tue Jan 17 09:30:14 CET 2006


Dmitry Dulepov <dima at spamcop.net> writes on 
Mon, 16 Jan 2006 21:36:54 +0100 (MET):

>
> Index: ext_tables.sql


Some of you send the patch first and then the text message. This is great for my webmailer ;-)


> <script type="text/javascript">
> - window.setTimeout("location.reload()",
> 3000);
> + window.setTimeout("location.reload()",
> 20000);


20 seconds are a long time users will hit the reload button as early as 5 seconds. BTW, wasn't there a meta refresh in the HTML code?


> + function addTempContentHttpHeaders() {
> + header('HTTP/1.0 503 Service unavailable');
> + header('Retry-after: 3600');
> + header('Pragma: no-cache');
> + header('Cache-control: private,no-cache,no-store');
> + header('Expire: 0');
> + }


We declare HTTP/1.0 but send HTTP/1.1 headers (Retry-after and Cache-control).

And aren't private and no-cache mutually exclusive? Private explicitely allows browser caching, which doesn't seem to be what we want. Especially if we set no-store, which means "sensitive data, make no permanent copies".

Masi 



More information about the TYPO3-team-core mailing list