1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-04 18:29:40 +02:00
ampache/templates/show_debug.inc.php
Lawrence Brown 60a653daf4 copyright 2014 -> 2015
janitorial services
2015-01-04 21:36:41 +00:00

147 lines
6.9 KiB
PHP

<?php
/* vim:set softtabstop=4 shiftwidth=4 expandtab: */
/**
*
* LICENSE: GNU General Public License, version 2 (GPLv2)
* Copyright 2001 - 2015 Ampache.org
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License v2
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*/
?>
<?php UI::show_box_top(T_('Debug Tools'), 'box box_debug_tools'); ?>
<div id="information_actions">
<ul>
<li>
<a href="<?php echo AmpConfig::get('web_path'); ?>/admin/system.php?action=generate_config"><?php echo UI::get_icon('cog', T_('Generate Configuration')) . ' ' . T_('Generate Configuration'); ?></a>
</li>
<li>
<a href="<?php echo AmpConfig::get('web_path'); ?>/admin/system.php?action=write_config"><?php echo UI::get_icon('cog', T_('Write New Config')) . ' ' . T_('Write New Config'); ?></a>
</li>
<li>
<a href="<?php echo AmpConfig::get('web_path'); ?>/admin/system.php?action=reset_db_charset"><?php echo UI::get_icon('server_lightning', T_('Set Database Charset')) . ' ' . T_('Set Database Charset'); ?></a>
</li>
<li>
<a href="<?php echo AmpConfig::get('web_path'); ?>/admin/system.php?action=clear_cache&type=song"><?php echo UI::get_icon('cog', T_('Clear Songs Cache')) . ' ' . T_('Clear Songs Cache'); ?></a>
</li>
<li>
<a href="<?php echo AmpConfig::get('web_path'); ?>/admin/system.php?action=clear_cache&type=artist"><?php echo UI::get_icon('cog', T_('Clear Artists Cache')) . ' ' . T_('Clear Artists Cache'); ?></a>
</li>
<li>
<a href="<?php echo AmpConfig::get('web_path'); ?>/admin/system.php?action=clear_cache&type=album"><?php echo UI::get_icon('cog', T_('Clear Albums Cache')) . ' ' . T_('Clear Albums Cache'); ?></a>
</li>
</ul>
</div>
<?php UI::show_box_top(T_('Ampache Update'), 'box'); ?>
<div><?php echo T_('Installed Ampache version'); ?>: <?php echo AutoUpdate::get_current_version(); ?>.</div>
<div><?php echo T_('Latest Ampache version'); ?>: <?php echo AutoUpdate::get_latest_version(); ?>.</div>
<div><a href="<?php echo AmpConfig::get('web_path'); ?>/admin/system.php?action=show_debug&autoupdate=force"><?php echo T_('Force check'); ?>...</a></div>
<?php
if (AutoUpdate::is_update_available()) {
AutoUpdate::show_new_version();
}
?>
<br />
<?php UI::show_box_bottom(); ?>
<?php UI::show_box_top(T_('PHP Settings'), 'box box_php_settings'); ?>
<table class="tabledata" cellpadding="0" cellspacing="0">
<colgroup>
<col id="col_php_setting">
<col id="col_php_value">
</colgroup>
<thead>
<tr class="th-top">
<th class="cel_php_setting"><?php echo T_('Setting'); ?></th>
<th class="cel_php_value"><?php echo T_('Value'); ?></th>
</tr>
</thead>
<tbody>
<tr class="<?php echo UI::flip_class(); ?>">
<td><?php echo T_('Memory Limit'); ?></td>
<td><?php echo ini_get('memory_limit'); ?></td>
</tr>
<tr class="<?php echo UI::flip_class(); ?>">
<td><?php echo T_('Maximum Execution Time'); ?></td>
<td><?php echo ini_get('max_execution_time'); ?></td>
</tr>
<tr class="<?php echo UI::flip_class(); ?>">
<td><?php echo T_('Override Execution Time'); ?></td>
<td><?php set_time_limit(0); echo ini_get('max_execution_time') ? T_('Failed') : T_('Succeeded'); ?></td>
</tr>
<tr class="<?php echo UI::flip_class(); ?>">
<td><?php echo T_('Safe Mode'); ?></td>
<td><?php echo print_bool(ini_get('safe_mode')); ?></td>
</tr>
<tr class="<?php echo UI::flip_class(); ?>">
<td>Open Basedir</td>
<td><?php echo ini_get('open_basedir'); ?></td>
</tr>
<tr class="<?php echo UI::flip_class(); ?>">
<td><?php echo T_('Zlib Support'); ?></td>
<td><?php echo print_bool(function_exists('gzcompress')); ?></td>
</tr>
<tr class="<?php echo UI::flip_class(); ?>">
<td><?php echo T_('GD Support'); ?></td>
<td><?php echo print_bool(function_exists('ImageCreateFromString')); ?></td>
</tr>
<tr class="<?php echo UI::flip_class(); ?>">
<td><?php echo T_('Iconv Support'); ?></td>
<td><?php echo print_bool(function_exists('iconv')); ?></td>
</tr>
<tr class="<?php echo UI::flip_class(); ?>">
<td><?php echo T_('Gettext Support'); ?></td>
<td><?php echo print_bool(function_exists('bindtextdomain')); ?></td>
</tr>
</tbody>
</table>
<?php UI::show_box_bottom(); ?>
<?php UI::show_box_top(T_('Current Configuration'), 'box box_current_configuration'); ?>
<table class="tabledata" cellpadding="0" cellspacing="0">
<colgroup>
<col id="col_configuration">
<col id="col_value">
</colgroup>
<thead>
<tr class="th-top">
<th class="cel_configuration"><?php echo T_('Preference'); ?></th>
<th class="cel_value"><?php echo T_('Value'); ?></th>
</tr>
</thead>
<tbody>
<?php foreach ($configuration as $key=>$value) {
if ($key == 'database_password' || $key == 'mysql_password') { $value = '*********'; }
if (is_array($value)) {
$string = '';
foreach ($value as $setting) {
$string .= $setting . '<br />';
}
$value = $string;
}
if (Preference::is_boolean($key)) {
$value = print_bool($value);
}
?>
<tr class="<?php echo UI::flip_class(); ?>">
<td valign="top"><strong><?php echo $key; ?></strong></td>
<td><?php echo $value; ?></td>
</tr>
</tbody>
<?php } ?>
</table>
<?php UI::show_box_bottom(); ?>
<?php UI::show_box_bottom(); ?>