2007-11-27 16:00:27 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// Utilities to help diagnose problems in the cluster
|
|
|
|
|
|
|
|
$TOPDIR = '..';
|
|
|
|
require_once "$TOPDIR/lib/functions.php";
|
|
|
|
|
|
|
|
insertHeader('Diagnose', NULL, NULL, array('support','diagnose'));
|
2008-10-23 17:54:02 +00:00
|
|
|
|
2008-10-29 13:57:19 +00:00
|
|
|
/*
|
2008-10-23 17:54:02 +00:00
|
|
|
dumpGlobals();
|
|
|
|
|
|
|
|
$xml = docmd("authcheck","",NULL);
|
|
|
|
echo "<p>authcheck:<br>\n";
|
|
|
|
foreach ($xml->children() as $response) foreach ($response->children() as $t) { echo (string) $t, "<br>\n"; }
|
|
|
|
echo "</p>\n";
|
|
|
|
|
|
|
|
$xml = docmd('tabdump','',NULL);
|
|
|
|
echo "<p>tabdump:<br>\n";
|
|
|
|
foreach ($xml->children() as $response) foreach ($response->children() as $t) { echo (string) $t, "<br>\n"; }
|
|
|
|
echo "</p>\n";
|
2008-10-29 13:57:19 +00:00
|
|
|
*/
|
2008-10-23 17:54:02 +00:00
|
|
|
|
2007-11-27 16:00:27 +00:00
|
|
|
insertNotDoneYet();
|
2008-10-17 01:45:03 +00:00
|
|
|
insertFooter();
|
2007-11-27 16:00:27 +00:00
|
|
|
?>
|