aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2003-03-23 16:18:50 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2003-03-23 16:18:50 +0000
commit0509c71053f5643368d419799296d246ff274b62 (patch)
treed235d12d70181918568cdfb6aad882a96d3120a8 /phpBB/adm
parentb9c998495571897ac4c01acea2fa2221314928d7 (diff)
downloadforums-0509c71053f5643368d419799296d246ff274b62.tar
forums-0509c71053f5643368d419799296d246ff274b62.tar.gz
forums-0509c71053f5643368d419799296d246ff274b62.tar.bz2
forums-0509c71053f5643368d419799296d246ff274b62.tar.xz
forums-0509c71053f5643368d419799296d246ff274b62.zip
Easy access to some PHP info
git-svn-id: file:///svn/phpbb/trunk@3699 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm')
-rw-r--r--phpBB/adm/admin_phpinfo.php64
1 files changed, 64 insertions, 0 deletions
diff --git a/phpBB/adm/admin_phpinfo.php b/phpBB/adm/admin_phpinfo.php
new file mode 100644
index 0000000000..3d5c307a43
--- /dev/null
+++ b/phpBB/adm/admin_phpinfo.php
@@ -0,0 +1,64 @@
+<?php
+/***************************************************************************
+ * admin_board.php
+ * -------------------
+ * begin : Thursday, Jul 12, 2001
+ * copyright : (C) 2001 The phpBB Group
+ * email : support@phpbb.com
+ *
+ * $Id$
+ *
+ ***************************************************************************/
+
+/***************************************************************************
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ ***************************************************************************/
+
+if (!empty($setmodules))
+{
+ $module['GENERAL']['PHP_INFO'] = ($auth->acl_get('a_server')) ? basename(__FILE__) . $SID : '';
+ return;
+}
+
+define('IN_PHPBB', 1);
+// Load default header
+$phpbb_root_path = '../';
+require($phpbb_root_path . 'extension.inc');
+require('pagestart.' . $phpEx);
+
+
+// Check permissions
+if (!$auth->acl_get('a_server'))
+{
+ trigger_error($user->lang['NO_ADMIN']);
+}
+
+ob_start();
+phpinfo(INFO_GENERAL | INFO_CONFIGURATION | INFO_MODULES | INFO_VARIABLES);
+$phpinfo = ob_get_contents();
+ob_end_clean();
+
+preg_match_all('#<body[^>]*>(.*)</body>#siU', $phpinfo, $output);
+$output = preg_replace('#<table#', '<table class="bg" align="center"', $output[1][0]);
+$output = preg_replace('#(\w),(\w)#', '\1, \2', $output);
+$output = preg_replace('#border="0" cellpadding="3" width="600"#', 'border="0" cellspacing="1" cellpadding="4" width="95%"', $output);
+$output = preg_replace('#<td>#', '<td class="row1">', $output);
+$output = preg_replace('#class="e"#', 'class="row1"', $output);
+$output = preg_replace('#class="v"#', 'class="row2"', $output);
+$output = preg_replace('# class="h"#', '', $output);
+$output = preg_replace('#<hr />#', '', $output);
+preg_match_all('#<div class="center">(.*)</div>#siU', $output, $output);
+$output = $output[1][0];
+
+page_header($user->lang['PHP_INFO']);
+
+echo $output;
+
+page_footer();
+
+?> \ No newline at end of file