diagnose.php
上传用户:gzy2002
上传日期:2010-02-11
资源大小:1785k
文件大小:4k
源码类别:

电子政务应用

开发平台:

Java

  1. <?php
  2. // +-------------------------------------------------------------+
  3. // | DeskPRO v [2.0.1 Production]
  4. // | Copyright (C) 2001 - 2004 Headstart Solutions Limited
  5. // | Supplied by WTN-WDYL
  6. // | Nullified by WTN-WDYL
  7. // | Distribution via WebForum, ForumRU and associated file dumps
  8. // +-------------------------------------------------------------+
  9. // | DESKPRO IS NOT FREE SOFTWARE
  10. // +-------------------------------------------------------------+
  11. // | License ID : Full Enterprise License =) ...
  12. // | License Owner : WTN-WDYL Team
  13. // +-------------------------------------------------------------+
  14. // | $RCSfile: diagnose.php,v $
  15. // | $Date: 2004/02/10 01:34:25 $
  16. // | $Revision: 1.14 $
  17. // +-------------------------------------------------------------+
  18. // | File Details:
  19. // | - Display assorted server diagnostic and status information
  20. // |   (administration interface)
  21. // +-------------------------------------------------------------+
  22. error_reporting(E_ALL & ~E_NOTICE);
  23. require_once('./global.php');
  24. //Nullify WTN-WDYL Team
  25. // default do
  26. $_REQUEST['do'] = trim($_REQUEST['do']);
  27. if (!isset($_REQUEST['do']) or $_REQUEST['do'] == "") {
  28. $_REQUEST['do'] = "mysql_vars";
  29. }
  30. ############################### PHP INFO ###############################
  31. if ($_REQUEST['do'] == 'phpinfo') {
  32. admin_header('Server Information', 'PHP Info');
  33. print $nav;
  34. ob_start();
  35. phpinfo();
  36. $phpinfo .= ob_get_contents();
  37. ob_end_clean();
  38. $tmp = stristr($phpinfo, '<table');
  39. $phpinfo = substr($phpinfo, (strlen($phpinfo) - strlen($tmp)), -19);
  40. print str_replace( 'width="600"', 'width="450"', $phpinfo);
  41. }
  42. ############################### INI VARS ###############################
  43. if ($_REQUEST['do'] == 'inivars') {
  44. admin_header('PHP Environment Variables', 'PHP Info');
  45. print $nav;
  46. foreach (ini_get_all() AS $key => $var) {
  47. $table[] = array(
  48. $key,
  49. $var['global_value'],
  50. $var['local_value'],
  51. $var['access']
  52. );
  53. }
  54. $columns = array('Variable Name', 'Global Value', 'Local Value', 'Change Permissions');
  55. table_header('mySQL Variables');
  56. table_content($columns, $table, '', '', '', '', array('30%', '70%'));
  57. table_footer();
  58. unset($table);
  59. ?>
  60. <pre>
  61. PHP_INI_USER | 1 | Entry can be set in user scripts
  62. PHP_INI_PERDIR | 2 | Entry can be set in php.ini, .htaccess or httpd.conf
  63. PHP_INI_SYSTEM | 4 | Entry can be set in php.ini or httpd.conf
  64. PHP_INI_ALL | 7 | Entry can be set anywhere
  65. </pre>
  66. <?php
  67. }
  68. ############################### MYSQL VARS ###############################
  69. if ($_REQUEST['do'] == "mysql_vars") {
  70. admin_header('Server Information', 'mySQL Variables');
  71. print $nav;
  72. $result = $db->query('SHOW VARIABLES');
  73. $colcount = $db->num_fields($result);
  74. for ($i = 0; $i < $colcount; $i++) {
  75. $columns[] = $db->field_name($i);
  76. }
  77. while ($result = $db->row_array()) {
  78. for ($i = 0; $i < $colcount; $i++) {
  79. $tmp[] = $result[$i];
  80. }
  81. $table[] = $tmp;
  82. unset($tmp);
  83. }
  84. table_header('mySQL Variables');
  85. table_content($columns, $table, '', '', '', '', array('30%', '70%'));
  86. table_footer();
  87. unset($table);
  88. }
  89. ############################### MYSQL STATUS ###############################
  90. if ($_REQUEST['do'] == "mysql_status") {
  91. admin_header('Server Information', 'mySQL Status');
  92. print $nav;
  93. $result = $db->query('SHOW STATUS');
  94. $colcount = $db->num_fields($result);
  95. for ($i = 0; $i < $colcount; $i++) {
  96. $columns[] = $db->field_name($i);
  97. }
  98. while ($result = $db->row_array()) {
  99. for ($i = 0; $i < $colcount; $i++) {
  100. $tmp[] = $result[$i];
  101. }
  102. $table[] = $tmp;
  103. unset($tmp);
  104. }
  105. table_header('mySQL Status');
  106. table_content($columns, $table, '', '', '', '', array('50%', '50%'));
  107. table_footer();
  108. unset($table);
  109. }
  110. ############################### MYSQL STATUS ###############################
  111. if ($_REQUEST['do'] == "table_status") {
  112. admin_header('Server Information', 'mySQL Table Status');
  113. print $nav;
  114. $result = $db->query('SHOW TABLE STATUS');
  115. $colcount = $db->num_fields($result);
  116. for ($i = 0; $i < $colcount; $i++) {
  117. $columns[] = $db->field_name($i);
  118. }
  119. while ($result = $db->row_array()) {
  120. for ($i = 0; $i < $colcount; $i++) {
  121. $tmp[] = $result[$i];
  122. }
  123. $table[] = $tmp;
  124. unset($tmp);
  125. }
  126. table_header('mySQL Table Status');
  127. table_content($columns, $table, '', '', '', '', array('50%', '50%'));
  128. table_footer();
  129. unset($table);
  130. }
  131. ##############################################################
  132. admin_footer();
  133. ?>