<?php
require_once "sessions.php";
require_once "modules/backend-rpc.php";
-
- header("Cache-Control: no-cache, max-age=0, must-revalidate");
- header("Pragma: no-cache");
- header("Expires: " . gmdate("D, d M Y H:i:s", time()) . " GMT");
-
+
+
/* if ($_GET["debug"]) {
define('DEFAULT_ERROR_LEVEL', E_ALL);
} else {
require_once "db-prefs.php";
require_once "functions.php";
+ no_cache_incantation();
+
$script_started = getmicrotime();
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
require_once "login_form.php";
}
+ // from http://developer.apple.com/internet/safari/faq.html
+ function no_cache_incantation() {
+ header("Expires: Mon, 22 Dec 1980 00:00:00 GMT"); // Happy birthday to me :)
+ header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); // always modified
+ header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0"); // HTTP/1.1
+ header("Cache-Control: post-check=0, pre-check=0", false);
+ header("Pragma: no-cache"); // HTTP/1.0
+ }
+
?>
$dt_add = get_script_dt_add();
- header("Cache-Control: no-cache, max-age=0, must-revalidate");
- header("Pragma: no-cache");
- header("Expires: " . gmdate("D, d M Y H:i:s", time()) . " GMT");
+ no_cache_incantation();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
$dt_add = get_script_dt_add();
- header("Cache-Control: no-cache, max-age=0, must-revalidate");
- header("Pragma: no-cache");
- header("Expires: " . gmdate("D, d M Y H:i:s", time()) . " GMT");
+ no_cache_incantation();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"