Add a members-only page to check the settings on the web server.

This commit is contained in:
Jeff Teunissen 2007-03-19 03:36:19 +00:00
parent 1ea94c5c38
commit e261fc6fdd
2 changed files with 12 additions and 0 deletions

View file

@ -11,3 +11,8 @@
information, check on the server(s), and so on. Members with Admin-level
access can modify news/plan entries here as well.
</P>
<P>
See information on the PHP implementation on the server
<A href="phpinfo.php">here</A>.
</P>

7
phpinfo.php Normal file
View file

@ -0,0 +1,7 @@
<? // Preamble
$pageName = "PHP Information";
$need = 'auth';
require "parts/preamble.php"; // Load up most of the document
phpinfo ();
?>