NAVIGATION
Setzen der META-Tags: “Cache-Control”, “Pragma” und “expires” aus einem Template oder CP heraus:
Forum: ...und gleich ein wieder Problem mit dem Kontaktformular
Externer Link: META-Tags "Cache-Control", "Pragma" & "expires"
Bedingung: → /config/phpwcms/conf.inc.php
[PHP] set_meta('pragma', 'no-cache', true); set_meta('cache-control', 'no-cache', true); set_meta('expires', '00', true); [/PHP]
Für ältere Systeme die die Funktion “set_meta(…)” noch nicht kennen:
[PHP] $GLOBALS['block']['custom_htmlhead']['metapragma'] = ' <meta http-equiv="pragma" content="no-cache" />'; $GLOBALS['block']['custom_htmlhead']['metacache-control'] = ' <meta http-equiv="cache-control" content="no-cache" />'; $GLOBALS['block']['custom_htmlhead']['metaexpires'] = ' <meta http-equiv="expires" content="0" />'; [/PHP]