mirror of
https://github.com/php/web-php.git
synced 2026-03-23 23:02:13 +01:00
18 lines
403 B
PHP
18 lines
403 B
PHP
<?php
|
|
/*
|
|
This page is displayed if there is no alias to
|
|
override the stats directory distributed by rsync,
|
|
which means there is no local search is set up
|
|
*/
|
|
$_SERVER['BASE_PAGE'] = 'stats/index.php';
|
|
include_once __DIR__ . '/../include/prepend.inc';
|
|
site_header("No Stats");
|
|
?>
|
|
|
|
<h1>No Stats</h1>
|
|
<p>
|
|
No visitor statistics information is available on this mirror site.
|
|
</p>
|
|
|
|
<?php site_footer(); ?>
|