mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 09:19:22 +02:00

* added option to change character name in accountmanagement * added automatic database updater (data migrations) * renamed events to hooks * moved hooks to database * now you can use hooks in plugins * set account.type field to 5, if TFS 1.0+ * added example plugin * new, latest google analytics code * fixed bug with loading account.name that has numbers in it * fixed many bugs in player editor in admin panel * added error handling to plugin manager and some more verification in file has been correctly unpacked/uploaded * fixed Statistics page in admin panel when using account.number * fixed bug when creating/recovering account on servers with account.salt field (TFS 0.3 for example) * fixed forum showing thread with html tags (added from news manager) * new, actual code for youtube videos in movies * fixed showing vocation images when using $config['online_vocations_images'] * many fixes in polls (also importing proper schema) * fixed hovering on buttons in kathrine template (on accountmanagement page) * many fixes in signatures * added missing gesior signature system
87 lines
2.0 KiB
PHP
87 lines
2.0 KiB
PHP
<?php
|
|
/**
|
|
* Logs
|
|
*
|
|
* @package MyAAC
|
|
* @author Slawkens <slawkens@gmail.com>
|
|
* @copyright 2017 MyAAC
|
|
* @version 0.0.6
|
|
* @link http://my-aac.org
|
|
*/
|
|
defined('MYAAC') or die('Direct access not allowed!');
|
|
$title = 'Logs viewer';
|
|
?>
|
|
|
|
<table class="table" width="100%" border="0" cellspacing="1" cellpadding="4">
|
|
<tr>
|
|
<th><b>Log name</b></td>
|
|
<th><b>Last updated</b></td>
|
|
</tr>
|
|
<?php
|
|
|
|
$files = array();
|
|
$aac_path_logs = BASE . 'system/logs/';
|
|
foreach(scandir($aac_path_logs) as $f) {
|
|
if($f[0] == '.' || $f == '..' || is_dir($aac_path_logs . $f))
|
|
continue;
|
|
|
|
$files[] = array($f, $aac_path_logs);
|
|
}
|
|
|
|
$server_path_logs = $config['server_path'] . 'logs/';
|
|
if(!file_exists($server_path_logs))
|
|
$server_path_logs = $config['data_path'] . 'logs/';
|
|
|
|
if(!file_exists($server_path_logs)) {
|
|
echo '</table>Logs are not available on this server.';
|
|
return;
|
|
}
|
|
|
|
foreach(scandir($server_path_logs) as $f) {
|
|
if($f[0] == '.' || $f == '..')
|
|
continue;
|
|
|
|
if(is_dir($server_path_logs . $f)) {
|
|
foreach(scandir($server_path_logs . $f) as $f2) {
|
|
if($f2[0] == '.' || $f2 == '..')
|
|
continue;
|
|
$files[] = array($f . '/' . $f2, $server_path_logs);
|
|
}
|
|
|
|
continue;
|
|
}
|
|
|
|
$files[] = array($f, $server_path_logs);
|
|
}
|
|
|
|
$i = 0;
|
|
foreach($files as $f) {
|
|
?>
|
|
<tr>
|
|
<td><a href="<?php echo ADMIN_URL . '?p=logs&file=' . $f[0]; ?>"><?php echo $f[0]; ?></a></td>
|
|
<td><?php echo date("Y-m-d H:i:s", filemtime($f[1] . $f[0])); ?></td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
?>
|
|
</table>
|
|
<?php
|
|
|
|
$file = isset($_GET['file']) ? $_GET['file'] : NULL;
|
|
if(!empty($file))
|
|
{
|
|
if(!preg_match('/[^A-z0-9\' _\/\-\.]/', $file))
|
|
{
|
|
if(file_exists($aac_path_logs . $file))
|
|
echo str_repeat('<br/>', 3) . '<b>' . $file . ':</b><br/><br/>' . nl2br(file_get_contents($aac_path_logs . $file));
|
|
else if(file_exists($server_path_logs . $file))
|
|
echo str_repeat('<br/>', 3) . '<b>' . $file . ':</b><br/><br/>' . nl2br(file_get_contents($server_path_logs . $file));
|
|
|
|
else
|
|
echo 'Specified file does not exist.';
|
|
}
|
|
else
|
|
echo 'Invalid file name specified.';
|
|
}
|
|
?>
|