aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/rrd.php
blob: a6f341ad7921f93ab1104b2cba29b846c3a57f58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php

require_once 'conf/common.inc.php';
require_once 'inc/functions.inc.php';
require_once 'inc/html.inc.php';

if ($file = validateRRDPath($CONFIG['datadir'], $_SERVER['PATH_INFO'])) {
	header('Content-Type: application/octet-stream');
	header('Content-Disposition: attachment; filename='.basename($file));
	header("Expires: " .date(DATE_RFC822,strtotime($CONFIG['cache']." seconds")));
    ob_clean();
    flush();
    readfile($file);
} else {
	header('HTTP/1.0 403 Forbidden');

	html_start();
	echo <<<EOT
<h2>Forbidden</h2>
<p><a href="{$CONFIG['weburl']}">Return home...</a></p>

EOT;
	html_end();
}