admerr.php

来自「eGroupWare is a multi-user, web-based gr」· PHP 代码 · 共 60 行

PHP
60
字号
<?php/**************************************************************************** copyright            : (C) 2001-2003 Advanced Internet Designs Inc.* email                : forum@prohost.org* $Id: admerr.php,v 1.2 2003/12/18 16:42:31 iliaa Exp $** 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.***************************************************************************/	require('./GLOBALS.php'); fud_egw();	fud_use('adm.inc', true);	if (!empty($_GET['clear_sql_log'])) {		@unlink($GLOBALS['ERROR_PATH'].'sql_errors');	} else if (!empty($_GET['clear_fud_log'])) {		@unlink($GLOBALS['ERROR_PATH'].'fud_errors');	}	require($WWW_ROOT_DISK . 'adm/admpanel.php');?><h2>Error Log Browser</h2><?php	$err = 0;	if (@file_exists($GLOBALS['ERROR_PATH'].'fud_errors') && filesize($GLOBALS['ERROR_PATH'].'fud_errors')) {		echo '<h4>FUDforum Error Log [<a href="admerr.php?clear_fud_log=1&'._rsid.'">clear log</a>]</h4>';		echo '<table class="resulttable"><tr class="resulttopic"><td>Time</td><td>Error Description</td></tr>';		$errors = file($GLOBALS['ERROR_PATH'].'fud_errors');		foreach ($errors as $error) {			list($time, $msg) = explode('] ', substr($error, 1));			echo '<tr class="field"><td nowrap valign="top">'.$time.'</td><td>'.base64_decode($msg).'</td></tr>';		}		echo '</table><br /><br />';		$err = 1;	}	if (@file_exists($GLOBALS['ERROR_PATH'].'sql_errors') && filesize($GLOBALS['ERROR_PATH'].'sql_errors')) {		echo '<h4>SQL Error Log [<a href="admerr.php?clear_sql_log=1&'._rsid.'">clear log</a>]</h4>';		echo '<table border=1 cellspacing=1 cellpadding=3><tr bgcolor="#bff8ff"><td>Time</td><td>Error Description</td></tr>';		$errors = file($GLOBALS['ERROR_PATH'].'sql_errors');		foreach ($errors as $error) {			list($time, $msg) = explode('] ', substr($error, 1));			echo '<tr class="field"><td nowrap valign="top">'.$time.'</td><td>'.base64_decode($msg).'</td></tr>';		}		echo '</table><br /><br />';		$err = 1;	}	if (!$err) {		echo '<h4>Error logs are currently empty</h4><br />';	}	require($WWW_ROOT_DISK . 'adm/admclose.php');?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?