Zeile 6 | Zeile 6 |
---|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* $Id: system_health.php 5016 2010-06-12 00:24:02Z RyanGordon $
| * $Id$
|
*/
// Disallow direct access to this file for security reasons
| */
// Disallow direct access to this file for security reasons
|
Zeile 16 | Zeile 16 |
---|
}
$page->add_breadcrumb_item($lang->system_health, "index.php?module=tools-system_health");
|
}
$page->add_breadcrumb_item($lang->system_health, "index.php?module=tools-system_health");
|
| $sub_tabs['system_health'] = array( 'title' => $lang->system_health, 'link' => "index.php?module=tools-system_health", 'description' => $lang->system_health_desc );
$sub_tabs['utf8_conversion'] = array( 'title' => $lang->utf8_conversion, 'link' => "index.php?module=tools-system_health&action=utf8_conversion", 'description' => $lang->utf8_conversion_desc2 );
$sub_tabs['template_check'] = array( 'title' => $lang->check_templates, 'link' => "index.php?module=tools-system_health&action=check_templates", 'description' => $lang->check_templates_desc );
|
$plugins->run_hooks("admin_tools_system_health_begin");
|
$plugins->run_hooks("admin_tools_system_health_begin");
|
| if($mybb->input['action'] == "do_check_templates" && $mybb->request_method == "post") { $plugins->run_hooks("admin_tools_system_health_template_do_check_start");
$query = $db->simple_select("templates", "*", "", array("order_by" => "sid, title", "order_dir" => "ASC"));
if(!$db->num_rows($query)) { flash_message($lang->error_invalid_input, 'error'); admin_redirect("index.php?module=tools-system_health"); }
$t_cache = array(); while($template = $db->fetch_array($query)) { if(check_template($template['template']) == true) { $t_cache[$template['sid']][] = $template; } }
if(empty($t_cache)) { flash_message($lang->success_templates_checked, 'success'); admin_redirect("index.php?module=tools-system_health"); }
$plugins->run_hooks("admin_tools_system_health_template_do_check");
$page->add_breadcrumb_item($lang->check_templates); $page->output_header($lang->check_templates);
$page->output_nav_tabs($sub_tabs, 'template_check'); $page->output_inline_error(array($lang->check_templates_info_desc));
$templatesets = array( -2 => array( "title" => "MyBB Master Templates" ) ); $query = $db->simple_select("templatesets", "*"); while($set = $db->fetch_array($query)) { $templatesets[$set['sid']] = $set; }
$count = 0; foreach($t_cache as $sid => $templates) { if(!$done_set[$sid]) { $table = new Table(); $table->construct_header($templatesets[$sid]['title'], array("colspan" => 2));
$done_set[$sid] = 1; ++$count; }
if($sid == -2) { // Some cheeky clown has altered the master templates! $table->construct_cell($lang->error_master_templates_altered, array("colspan" => 2)); $table->construct_row(); }
foreach($templates as $template) { if($sid == -2) { $table->construct_cell($template['title'], array('colspan' => 2)); } else { $popup = new PopupMenu("template_{$template['tid']}", $lang->options); $popup->add_item($lang->full_edit, "index.php?module=style-templates&action=edit_template&title=".urlencode($template['title'])."&sid={$sid}");
$table->construct_cell("<a href=\"index.php?module=style-templates&action=edit_template&title=".urlencode($template['title'])."&sid={$sid}&from=diff_report\">{$template['title']}</a>", array('width' => '80%')); $table->construct_cell($popup->fetch(), array("class" => "align_center")); }
$table->construct_row(); }
if($done_set[$sid] && !$done_output[$sid]) { $done_output[$sid] = 1; if($count == 1) { $table->output($lang->check_templates); } else { $table->output(); } } }
$page->output_footer(); }
if($mybb->input['action'] == "check_templates") { $plugins->run_hooks("admin_tools_system_health_template_check");
$page->add_breadcrumb_item($lang->check_templates); $page->output_header($lang->check_templates);
$page->output_nav_tabs($sub_tabs, 'template_check');
if($errors) { $page->output_inline_error($errors); }
$form = new Form("index.php?module=tools-system_health", "post", "check_set"); echo $form->generate_hidden_field("action", "do_check_templates");
$form_container = new FormContainer($lang->check_templates); $form_container->output_row($lang->check_templates_title, "", $lang->check_templates_info); $form_container->end();
$buttons = array(); $buttons[] = $form->generate_submit_button($lang->proceed);
$form->output_submit_wrapper($buttons);
$form->end();
$page->output_footer(); }
|
if($mybb->input['action'] == "utf8_conversion") { $plugins->run_hooks("admin_tools_system_health_utf8_conversion");
|
if($mybb->input['action'] == "utf8_conversion") { $plugins->run_hooks("admin_tools_system_health_utf8_conversion");
|
|
|
if($db->type == "sqlite" || $db->type == "pgsql") { flash_message($lang->error_not_supported, 'error'); admin_redirect("index.php?module=tools-system_health"); }
|
if($db->type == "sqlite" || $db->type == "pgsql") { flash_message($lang->error_not_supported, 'error'); admin_redirect("index.php?module=tools-system_health"); }
|
|
|
if($mybb->request_method == "post" || ($mybb->input['do'] == "all" && !empty($mybb->input['table']))) { @set_time_limit(0);
|
if($mybb->request_method == "post" || ($mybb->input['do'] == "all" && !empty($mybb->input['table']))) { @set_time_limit(0);
|
|
|
$old_table_prefix = $db->table_prefix; $db->set_table_prefix('');
|
$old_table_prefix = $db->table_prefix; $db->set_table_prefix('');
|
|
|
if(!$db->table_exists($db->escape_string($mybb->input['table']))) { flash_message($lang->error_invalid_table, 'error'); admin_redirect("index.php?module=tools-system_health&action=utf8_conversion"); }
|
if(!$db->table_exists($db->escape_string($mybb->input['table']))) { flash_message($lang->error_invalid_table, 'error'); admin_redirect("index.php?module=tools-system_health&action=utf8_conversion"); }
|
|
|
$db->set_table_prefix($old_table_prefix);
|
$db->set_table_prefix($old_table_prefix);
|
|
|
$page->add_breadcrumb_item($lang->utf8_conversion, "index.php?module=tools-system_health&action=utf8_conversion");
|
$page->add_breadcrumb_item($lang->utf8_conversion, "index.php?module=tools-system_health&action=utf8_conversion");
|
|
|
$page->output_header($lang->system_health." - ".$lang->utf8_conversion);
|
$page->output_header($lang->system_health." - ".$lang->utf8_conversion);
|
|
|
$sub_tabs['system_health'] = array( 'title' => $lang->system_health, 'link' => "index.php?module=tools-system_health", 'description' => $lang->system_health_desc );
|
$sub_tabs['system_health'] = array( 'title' => $lang->system_health, 'link' => "index.php?module=tools-system_health", 'description' => $lang->system_health_desc );
|
|
|
$sub_tabs['utf8_conversion'] = array( 'title' => $lang->utf8_conversion, 'link' => "index.php?module=tools-system_health&action=utf8_conversion", 'description' => $lang->utf8_conversion_desc2 );
|
$sub_tabs['utf8_conversion'] = array( 'title' => $lang->utf8_conversion, 'link' => "index.php?module=tools-system_health&action=utf8_conversion", 'description' => $lang->utf8_conversion_desc2 );
|
|
|
$page->output_nav_tabs($sub_tabs, 'utf8_conversion');
|
$page->output_nav_tabs($sub_tabs, 'utf8_conversion');
|
|
|
$old_table_prefix = $db->table_prefix; $db->set_table_prefix('');
|
$old_table_prefix = $db->table_prefix; $db->set_table_prefix('');
|
|
|
$table = new Table;
|
$table = new Table;
|
|
|
$table1 = $db->show_create_table($db->escape_string($mybb->input['table'])); preg_match("#CHARSET=([a-zA-Z0-9_]+)\s?#i", $table1, $matches); $charset = $matches[1];
|
$table1 = $db->show_create_table($db->escape_string($mybb->input['table'])); preg_match("#CHARSET=([a-zA-Z0-9_]+)\s?#i", $table1, $matches); $charset = $matches[1];
|
|
|
$table->construct_cell("<strong>".$lang->sprintf($lang->converting_to_utf8, $mybb->input['table'], $charset)."</strong>");
|
$table->construct_cell("<strong>".$lang->sprintf($lang->converting_to_utf8, $mybb->input['table'], $charset)."</strong>");
|
$table->construct_row();
| $table->construct_row();
|
$table->construct_cell($lang->please_wait); $table->construct_row();
|
$table->construct_cell($lang->please_wait); $table->construct_row();
|
|
|
$table->output($converting_table." {$mybb->input['table']}");
|
$table->output($converting_table." {$mybb->input['table']}");
|
|
|
$db->set_table_prefix($old_table_prefix);
|
$db->set_table_prefix($old_table_prefix);
|
|
|
$page->output_footer(false);
|
$page->output_footer(false);
|
|
|
$old_table_prefix = $db->table_prefix; $db->set_table_prefix('');
|
$old_table_prefix = $db->table_prefix; $db->set_table_prefix('');
|
|
|
flush();
$types = array(
| flush();
$types = array(
|
Zeile 94 | Zeile 243 |
---|
'longtext' => 'longblob', 'char' => 'varbinary', 'varchar' => 'varbinary',
|
'longtext' => 'longblob', 'char' => 'varbinary', 'varchar' => 'varbinary',
|
'tinytext' => 'tinyblob'
| 'tinytext' => 'tinyblob'
|
);
|
);
|
|
|
$blob_types = array( 'blob', 'tinyblob', 'mediumblog', 'longblob', 'text', 'tinytext', 'mediumtext', 'longtext' );
|
$blob_types = array( 'blob', 'tinyblob', 'mediumblog', 'longblob', 'text', 'tinytext', 'mediumtext', 'longtext' );
|
|
|
// Get next table in list $convert_to_binary = ''; $convert_to_utf8 = ''; $comma = '';
|
// Get next table in list $convert_to_binary = ''; $convert_to_utf8 = ''; $comma = '';
|
|
|
// Set table default charset $db->write_query("ALTER TABLE {$mybb->input['table']} DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci");
| // Set table default charset $db->write_query("ALTER TABLE {$mybb->input['table']} DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci");
|
Zeile 136 | Zeile 285 |
---|
{ // Build the actual strings for converting the columns $names = "CHANGE `{$column['Field']}` `{$column['Field']}` ";
|
{ // Build the actual strings for converting the columns $names = "CHANGE `{$column['Field']}` `{$column['Field']}` ";
|
|
|
if(($db->type == 'mysql' || $db->type == 'mysqli') && in_array($type, $blob_types)) { if($column['Null'] == 'YES') { $attributes = 'NULL';
|
if(($db->type == 'mysql' || $db->type == 'mysqli') && in_array($type, $blob_types)) { if($column['Null'] == 'YES') { $attributes = 'NULL';
|
}
| }
|
else { $attributes = 'NOT NULL';
|
else { $attributes = 'NOT NULL';
|
} }
| } }
|
else { $attributes = " DEFAULT "; if($column['Default'] == 'NULL')
|
else { $attributes = " DEFAULT "; if($column['Default'] == 'NULL')
|
{
| {
|
$attributes .= "NULL "; } else { $attributes .= "'".$db->escape_string($column['Default'])."' ";
|
$attributes .= "NULL "; } else { $attributes .= "'".$db->escape_string($column['Default'])."' ";
|
|
|
if($column['Null'] == 'YES') { $attributes .= 'NULL';
| if($column['Null'] == 'YES') { $attributes .= 'NULL';
|
Zeile 169 | Zeile 318 |
---|
} } }
|
} } }
|
|
|
$convert_to_binary .= $comma.$names.preg_replace('/'.$type.'/i', $types[$type], $column['Type']).' '.$attributes; $convert_to_utf8 .= "{$comma}{$names}{$column['Type']} CHARACTER SET utf8 COLLATE utf8_general_ci {$attributes}";
|
$convert_to_binary .= $comma.$names.preg_replace('/'.$type.'/i', $types[$type], $column['Type']).' '.$attributes; $convert_to_utf8 .= "{$comma}{$names}{$column['Type']} CHARACTER SET utf8 COLLATE utf8_general_ci {$attributes}";
|
|
|
$comma = $lang->comma; } }
|
$comma = $lang->comma; } }
|
|
|
if(!empty($convert_to_binary)) { // This converts the columns to UTF-8 while also doing the same for data $db->write_query("ALTER TABLE {$mybb->input['table']} {$convert_to_binary}"); $db->write_query("ALTER TABLE {$mybb->input['table']} {$convert_to_utf8}"); }
|
if(!empty($convert_to_binary)) { // This converts the columns to UTF-8 while also doing the same for data $db->write_query("ALTER TABLE {$mybb->input['table']} {$convert_to_binary}"); $db->write_query("ALTER TABLE {$mybb->input['table']} {$convert_to_utf8}"); }
|
|
|
// Any fulltext indexes to recreate? if(is_array($fulltext_to_create)) {
| // Any fulltext indexes to recreate? if(is_array($fulltext_to_create)) {
|
Zeile 192 | Zeile 341 |
---|
$db->create_fulltext_index($mybb->input['table'], $fields, $name); } }
|
$db->create_fulltext_index($mybb->input['table'], $fields, $name); } }
|
|
|
$db->set_table_prefix($old_table_prefix);
|
$db->set_table_prefix($old_table_prefix);
|
|
|
$plugins->run_hooks("admin_tools_system_health_utf8_conversion_commit");
|
$plugins->run_hooks("admin_tools_system_health_utf8_conversion_commit");
|
|
|
// Log admin action log_admin_action($mybb->input['table']);
|
// Log admin action log_admin_action($mybb->input['table']);
|
|
|
flash_message($lang->sprintf($lang->success_table_converted, $mybb->input['table']), 'success');
|
flash_message($lang->sprintf($lang->success_table_converted, $mybb->input['table']), 'success');
|
|
|
if($mybb->input['do'] == "all") { $old_table_prefix = $db->table_prefix; $db->set_table_prefix('');
|
if($mybb->input['do'] == "all") { $old_table_prefix = $db->table_prefix; $db->set_table_prefix('');
|
|
|
$tables = $db->list_tables($mybb->config['database']['database']); foreach($tables as $key => $tablename)
|
$tables = $db->list_tables($mybb->config['database']['database']); foreach($tables as $key => $tablename)
|
{
| {
|
if(substr($tablename, 0, strlen(TABLE_PREFIX)) == TABLE_PREFIX) { $table = $db->show_create_table($tablename);
| if(substr($tablename, 0, strlen(TABLE_PREFIX)) == TABLE_PREFIX) { $table = $db->show_create_table($tablename);
|
Zeile 218 | Zeile 367 |
---|
{ continue; }
|
{ continue; }
|
$mybb_tables[$key] = $tablename;
| $mybb_tables[$key] = $tablename;
|
} }
|
} }
|
|
|
asort($mybb_tables); reset($mybb_tables);
|
asort($mybb_tables); reset($mybb_tables);
|
|
|
$is_next = false; $nexttable = "";
|
$is_next = false; $nexttable = "";
|
|
|
foreach($mybb_tables as $key => $tablename) { if($is_next == true)
|
foreach($mybb_tables as $key => $tablename) { if($is_next == true)
|
{
| {
|
$nexttable = $tablename; break;
|
$nexttable = $tablename; break;
|
}
| }
|
else if($mybb->input['table'] == $tablename) { $is_next = true; }
|
else if($mybb->input['table'] == $tablename) { $is_next = true; }
|
}
| }
|
$db->set_table_prefix($old_table_prefix);
|
$db->set_table_prefix($old_table_prefix);
|
|
|
if($nexttable) { $nexttable = $db->escape_string($nexttable);
| if($nexttable) { $nexttable = $db->escape_string($nexttable);
|
Zeile 251 | Zeile 400 |
---|
exit; } }
|
exit; } }
|
|
|
admin_redirect("index.php?module=tools-system_health&action=utf8_conversion");
|
admin_redirect("index.php?module=tools-system_health&action=utf8_conversion");
|
|
|
exit; }
|
exit; }
|
|
|
if($mybb->input['table'] || $mybb->input['do'] == "all") { $old_table_prefix = $db->table_prefix; $db->set_table_prefix('');
|
if($mybb->input['table'] || $mybb->input['do'] == "all") { $old_table_prefix = $db->table_prefix; $db->set_table_prefix('');
|
|
|
if($mybb->input['do'] != "all" && !$db->table_exists($db->escape_string($mybb->input['table']))) { $db->set_table_prefix($old_table_prefix); flash_message($lang->error_invalid_table, 'error'); admin_redirect("index.php?module=tools-system_health&action=utf8_conversion"); }
|
if($mybb->input['do'] != "all" && !$db->table_exists($db->escape_string($mybb->input['table']))) { $db->set_table_prefix($old_table_prefix); flash_message($lang->error_invalid_table, 'error'); admin_redirect("index.php?module=tools-system_health&action=utf8_conversion"); }
|
|
|
if($mybb->input['do'] == "all") { $tables = $db->list_tables($mybb->config['database']['database']);
| if($mybb->input['do'] == "all") { $tables = $db->list_tables($mybb->config['database']['database']);
|
Zeile 285 | Zeile 434 |
---|
$mybb_tables[$key] = $tablename; } }
|
$mybb_tables[$key] = $tablename; } }
|
|
|
if(is_array($mybb_tables)) { asort($mybb_tables);
| if(is_array($mybb_tables)) { asort($mybb_tables);
|
Zeile 299 | Zeile 448 |
---|
flash_message($lang->success_all_tables_already_converted, 'success'); admin_redirect("index.php?module=tools-system_health"); }
|
flash_message($lang->success_all_tables_already_converted, 'success'); admin_redirect("index.php?module=tools-system_health"); }
|
}
| }
|
else { $table = $db->show_create_table($db->escape_string($mybb->input['table'])); }
|
else { $table = $db->show_create_table($db->escape_string($mybb->input['table'])); }
|
|
|
$page->add_breadcrumb_item($lang->utf8_conversion, "index.php?module=tools-system_health&action=utf8_conversion");
|
$page->add_breadcrumb_item($lang->utf8_conversion, "index.php?module=tools-system_health&action=utf8_conversion");
|
|
|
$db->set_table_prefix($old_table_prefix);
|
$db->set_table_prefix($old_table_prefix);
|
|
|
$page->output_header($lang->system_health." - ".$lang->utf8_conversion);
|
$page->output_header($lang->system_health." - ".$lang->utf8_conversion);
|
|
|
$sub_tabs['system_health'] = array( 'title' => $lang->system_health, 'link' => "index.php?module=tools-system_health", 'description' => $lang->system_health_desc );
|
$sub_tabs['system_health'] = array( 'title' => $lang->system_health, 'link' => "index.php?module=tools-system_health", 'description' => $lang->system_health_desc );
|
|
|
$sub_tabs['utf8_conversion'] = array( 'title' => $lang->utf8_conversion, 'link' => "index.php?module=tools-system_health&action=utf8_conversion", 'description' => $lang->utf8_conversion_desc2 );
|
$sub_tabs['utf8_conversion'] = array( 'title' => $lang->utf8_conversion, 'link' => "index.php?module=tools-system_health&action=utf8_conversion", 'description' => $lang->utf8_conversion_desc2 );
|
|
|
$page->output_nav_tabs($sub_tabs, 'utf8_conversion');
|
$page->output_nav_tabs($sub_tabs, 'utf8_conversion');
|
|
|
$old_table_prefix = $db->table_prefix; $db->set_table_prefix('');
|
$old_table_prefix = $db->table_prefix; $db->set_table_prefix('');
|
|
|
preg_match("#CHARSET=([a-zA-Z0-9_]+)\s?#i", $table, $matches); $charset = $matches[1];
|
preg_match("#CHARSET=([a-zA-Z0-9_]+)\s?#i", $table, $matches); $charset = $matches[1];
|
|
|
$form = new Form("index.php?module=tools-system_health&action=utf8_conversion", "post", "utf8_conversion"); echo $form->generate_hidden_field("table", $mybb->input['table']);
|
$form = new Form("index.php?module=tools-system_health&action=utf8_conversion", "post", "utf8_conversion"); echo $form->generate_hidden_field("table", $mybb->input['table']);
|
|
|
if($mybb->input['do'] == "all") { echo $form->generate_hidden_field("do", "all"); }
|
if($mybb->input['do'] == "all") { echo $form->generate_hidden_field("do", "all"); }
|
|
|
$table = new Table;
|
$table = new Table;
|
|
|
if($mybb->input['do'] == "all") { $table->construct_cell("<strong>".$lang->sprintf($lang->convert_all_to_utf, $charset)."</strong>");
| if($mybb->input['do'] == "all") { $table->construct_cell("<strong>".$lang->sprintf($lang->convert_all_to_utf, $charset)."</strong>");
|
Zeile 349 | Zeile 498 |
---|
{ $table->construct_cell("<strong>".$lang->sprintf($lang->convert_to_utf8, $mybb->input['table'], $charset)."</strong>"); }
|
{ $table->construct_cell("<strong>".$lang->sprintf($lang->convert_to_utf8, $mybb->input['table'], $charset)."</strong>"); }
|
$table->construct_row();
| $table->construct_row();
|
$table->construct_cell($lang->notice_process_long_time); $table->construct_row();
|
$table->construct_cell($lang->notice_process_long_time); $table->construct_row();
|
|
|
if($mybb->input['do'] == "all") { $table->output($lang->convert_tables);
| if($mybb->input['do'] == "all") { $table->output($lang->convert_tables);
|
Zeile 365 | Zeile 514 |
---|
$table->output($lang->convert_table.": {$mybb->input['table']}"); $buttons[] = $form->generate_submit_button($lang->convert_database_table); }
|
$table->output($lang->convert_table.": {$mybb->input['table']}"); $buttons[] = $form->generate_submit_button($lang->convert_database_table); }
|
|
|
$form->output_submit_wrapper($buttons);
|
$form->output_submit_wrapper($buttons);
|
|
|
$form->end();
|
$form->end();
|
|
|
$db->set_table_prefix($old_table_prefix);
|
$db->set_table_prefix($old_table_prefix);
|
|
|
$page->output_footer();
|
$page->output_footer();
|
|
|
exit; }
|
exit; }
|
|
|
$tables = $db->list_tables($mybb->config['database']['database']);
|
$tables = $db->list_tables($mybb->config['database']['database']);
|
|
|
$old_table_prefix = $db->table_prefix; $db->set_table_prefix('');
|
$old_table_prefix = $db->table_prefix; $db->set_table_prefix('');
|
|
|
$not_okey_count = 0; $not_okey = array(); $okey_count = 0;
|
$not_okey_count = 0; $not_okey = array(); $okey_count = 0;
|
|
|
foreach($tables as $key => $tablename)
|
foreach($tables as $key => $tablename)
|
{
| {
|
if(substr($tablename, 0, strlen($old_table_prefix)) == $old_table_prefix) { $table = $db->show_create_table($tablename);
| if(substr($tablename, 0, strlen($old_table_prefix)) == $old_table_prefix) { $table = $db->show_create_table($tablename);
|
Zeile 401 | Zeile 550 |
---|
{ ++$okay_count; }
|
{ ++$okay_count; }
|
$mybb_tables[$key] = $tablename;
| $mybb_tables[$key] = $tablename;
|
}
|
}
|
}
| }
|
$db->set_table_prefix($old_table_prefix);
|
$db->set_table_prefix($old_table_prefix);
|
|
|
if($okay_count == count($mybb_tables)) { flash_message($lang->success_all_tables_already_converted, 'success'); admin_redirect("index.php?module=tools-system_health"); }
|
if($okay_count == count($mybb_tables)) { flash_message($lang->success_all_tables_already_converted, 'success'); admin_redirect("index.php?module=tools-system_health"); }
|
|
|
if(!$mybb->config['database']['encoding']) { flash_message($lang->error_db_encoding_not_set, 'error'); admin_redirect("index.php?module=tools-system_health"); }
|
if(!$mybb->config['database']['encoding']) { flash_message($lang->error_db_encoding_not_set, 'error'); admin_redirect("index.php?module=tools-system_health"); }
|
|
|
$page->add_breadcrumb_item($lang->utf8_conversion, "index.php?module=tools-system_health&action=utf8_conversion");
|
$page->add_breadcrumb_item($lang->utf8_conversion, "index.php?module=tools-system_health&action=utf8_conversion");
|
|
|
$page->output_header($lang->system_health." - ".$lang->utf8_conversion);
|
$page->output_header($lang->system_health." - ".$lang->utf8_conversion);
|
$sub_tabs['system_health'] = array( 'title' => $lang->system_health, 'link' => "index.php?module=tools-system_health", 'description' => $lang->system_health_desc ); $sub_tabs['utf8_conversion'] = array( 'title' => $lang->utf8_conversion, 'link' => "index.php?module=tools-system_health&action=utf8_conversion", 'description' => $lang->utf8_conversion_desc2 );
|
|
$page->output_nav_tabs($sub_tabs, 'utf8_conversion');
|
$page->output_nav_tabs($sub_tabs, 'utf8_conversion');
|
|
|
asort($mybb_tables);
|
asort($mybb_tables);
|
|
|
$table = new Table; $table->construct_header($lang->table); $table->construct_header($lang->status, array("class" => "align_center"));
|
$table = new Table; $table->construct_header($lang->table); $table->construct_header($lang->status, array("class" => "align_center"));
|
|
|
foreach($mybb_tables as $key => $tablename) { if(array_key_exists($key, $not_okey))
|
foreach($mybb_tables as $key => $tablename) { if(array_key_exists($key, $not_okey))
|
{
| {
|
$status = "<a href=\"index.php?module=tools-system_health&action=utf8_conversion&table={$tablename}\" style=\"background: url(styles/{$page->style}/images/icons/cross.gif) no-repeat; padding-left: 20px;\">{$lang->convert_now}</a>"; } else
| $status = "<a href=\"index.php?module=tools-system_health&action=utf8_conversion&table={$tablename}\" style=\"background: url(styles/{$page->style}/images/icons/cross.gif) no-repeat; padding-left: 20px;\">{$lang->convert_now}</a>"; } else
|
Zeile 458 | Zeile 595 |
---|
$table->construct_cell($status, array("class" => "align_center", 'width' => '15%')); $table->construct_row(); }
|
$table->construct_cell($status, array("class" => "align_center", 'width' => '15%')); $table->construct_row(); }
|
|
|
$table->output("<div style=\"float: right; text-decoration: underline\"><small><a href=\"index.php?module=tools-system_health&action=utf8_conversion&do=all\">({$lang->convert_all})</a></small></div><div>{$lang->utf8_conversion}</div>");
|
$table->output("<div style=\"float: right; text-decoration: underline\"><small><a href=\"index.php?module=tools-system_health&action=utf8_conversion&do=all\">({$lang->convert_all})</a></small></div><div>{$lang->utf8_conversion}</div>");
|
|
|
$page->output_footer(); }
|
$page->output_footer(); }
|
|
|
if(!$mybb->input['action']) { $plugins->run_hooks("admin_tools_system_health_start");
|
if(!$mybb->input['action']) { $plugins->run_hooks("admin_tools_system_health_start");
|
|
|
$page->output_header($lang->system_health);
|
$page->output_header($lang->system_health);
|
$sub_tabs['system_health'] = array( 'title' => $lang->system_health, 'link' => "index.php?module=tools-system_health", 'description' => $lang->system_health_desc ); $sub_tabs['utf8_conversion'] = array( 'title' => $lang->utf8_conversion, 'link' => "index.php?module=tools-system_health&action=utf8_conversion", 'description' => $lang->utf8_conversion_desc2 );
|
|
$page->output_nav_tabs($sub_tabs, 'system_health');
|
$page->output_nav_tabs($sub_tabs, 'system_health');
|
|
|
$table = new Table; $table->construct_header($lang->totals, array("colspan" => 2)); $table->construct_header($lang->attachments, array("colspan" => 2));
|
$table = new Table; $table->construct_header($lang->totals, array("colspan" => 2)); $table->construct_header($lang->attachments, array("colspan" => 2));
|
|
|
$query = $db->simple_select("attachments", "COUNT(*) AS numattachs, SUM(filesize) as spaceused, SUM(downloads*filesize) as bandwidthused", "visible='1' AND pid > '0'"); $attachs = $db->fetch_array($query);
|
$query = $db->simple_select("attachments", "COUNT(*) AS numattachs, SUM(filesize) as spaceused, SUM(downloads*filesize) as bandwidthused", "visible='1' AND pid > '0'"); $attachs = $db->fetch_array($query);
|
|
|
$table->construct_cell("<strong>{$lang->total_database_size}</strong>", array('width' => '25%')); $table->construct_cell(get_friendly_size($db->fetch_size()), array('width' => '25%')); $table->construct_cell("<strong>{$lang->attachment_space_used}</strong>", array('width' => '200'));
|
$table->construct_cell("<strong>{$lang->total_database_size}</strong>", array('width' => '25%')); $table->construct_cell(get_friendly_size($db->fetch_size()), array('width' => '25%')); $table->construct_cell("<strong>{$lang->attachment_space_used}</strong>", array('width' => '200'));
|
$table->construct_cell(get_friendly_size($attachs['spaceused']), array('width' => '200'));
| $table->construct_cell(get_friendly_size(intval($attachs['spaceused'])), array('width' => '200'));
|
$table->construct_row();
|
$table->construct_row();
|
|
|
if($attachs['spaceused'] > 0) { $attach_average_size = round($attachs['spaceused']/$attachs['numattachs']); $bandwidth_average_usage = round($attachs['bandwidthused']);
|
if($attachs['spaceused'] > 0) { $attach_average_size = round($attachs['spaceused']/$attachs['numattachs']); $bandwidth_average_usage = round($attachs['bandwidthused']);
|
}
| }
|
else { $attach_average_size = 0; $bandwidth_average_usage = 0; }
|
else { $attach_average_size = 0; $bandwidth_average_usage = 0; }
|
|
|
$table->construct_cell("<strong>{$lang->total_cache_size}</strong>", array('width' => '25%')); $table->construct_cell(get_friendly_size($cache->size_of()), array('width' => '25%')); $table->construct_cell("<strong>{$lang->estimated_attachment_bandwidth_usage}</strong>", array('width' => '25%')); $table->construct_cell(get_friendly_size($bandwidth_average_usage), array('width' => '25%')); $table->construct_row();
|
$table->construct_cell("<strong>{$lang->total_cache_size}</strong>", array('width' => '25%')); $table->construct_cell(get_friendly_size($cache->size_of()), array('width' => '25%')); $table->construct_cell("<strong>{$lang->estimated_attachment_bandwidth_usage}</strong>", array('width' => '25%')); $table->construct_cell(get_friendly_size($bandwidth_average_usage), array('width' => '25%')); $table->construct_row();
|
|
|
$table->construct_cell("<strong>{$lang->max_upload_post_size}</strong>", array('width' => '200')); $table->construct_cell(@ini_get('upload_max_filesize').' / '.@ini_get('post_max_size'), array('width' => '200')); $table->construct_cell("<strong>{$lang->average_attachment_size}</strong>", array('width' => '25%')); $table->construct_cell(get_friendly_size($attach_average_size), array('width' => '25%')); $table->construct_row();
|
$table->construct_cell("<strong>{$lang->max_upload_post_size}</strong>", array('width' => '200')); $table->construct_cell(@ini_get('upload_max_filesize').' / '.@ini_get('post_max_size'), array('width' => '200')); $table->construct_cell("<strong>{$lang->average_attachment_size}</strong>", array('width' => '25%')); $table->construct_cell(get_friendly_size($attach_average_size), array('width' => '25%')); $table->construct_row();
|
|
|
$table->output($lang->stats);
|
$table->output($lang->stats);
|
|
|
$table->construct_header($lang->task); $table->construct_header($lang->run_time, array("width" => 200, "class" => "align_center"));
|
$table->construct_header($lang->task); $table->construct_header($lang->run_time, array("width" => 200, "class" => "align_center"));
|
|
|
$task_cache = $cache->read("tasks"); $nextrun = $task_cache['nextrun'];
|
$task_cache = $cache->read("tasks"); $nextrun = $task_cache['nextrun'];
|
|
|
$query = $db->simple_select("tasks", "*", "nextrun >= '{$nextrun}' AND enabled='1'", array("order_by" => "nextrun", "order_dir" => "asc", 'limit' => 3)); while($task = $db->fetch_array($query)) {
| $query = $db->simple_select("tasks", "*", "nextrun >= '{$nextrun}' AND enabled='1'", array("order_by" => "nextrun", "order_dir" => "asc", 'limit' => 3)); while($task = $db->fetch_array($query)) {
|
Zeile 536 | Zeile 661 |
---|
$next_run = date($mybb->settings['dateformat'], $task['nextrun']).", ".date($mybb->settings['timeformat'], $task['nextrun']); $table->construct_cell("<strong>{$task['title']}</strong>"); $table->construct_cell($next_run, array("class" => "align_center"));
|
$next_run = date($mybb->settings['dateformat'], $task['nextrun']).", ".date($mybb->settings['timeformat'], $task['nextrun']); $table->construct_cell("<strong>{$task['title']}</strong>"); $table->construct_cell($next_run, array("class" => "align_center"));
|
|
|
$table->construct_row(); }
|
$table->construct_row(); }
|
|
|
$table->output($lang->next_3_tasks);
|
$table->output($lang->next_3_tasks);
|
|
|
$backups = array(); $dir = MYBB_ADMIN_DIR.'backups/'; $handle = opendir($dir);
| $backups = array(); $dir = MYBB_ADMIN_DIR.'backups/'; $handle = opendir($dir);
|
Zeile 560 | Zeile 685 |
---|
} } }
|
} } }
|
|
|
$count = count($backups); krsort($backups);
|
$count = count($backups); krsort($backups);
|
|
|
$table = new Table; $table->construct_header($lang->name); $table->construct_header($lang->backup_time, array("width" => 200, "class" => "align_center"));
|
$table = new Table; $table->construct_header($lang->name); $table->construct_header($lang->backup_time, array("width" => 200, "class" => "align_center"));
|
|
|
$backupscnt = 0; foreach($backups as $backup) { ++$backupscnt;
|
$backupscnt = 0; foreach($backups as $backup) { ++$backupscnt;
|
|
|
if($backupscnt == 4) { break; }
|
if($backupscnt == 4) { break; }
|
|
|
if($backup['time']) { $time = my_date($mybb->settings['dateformat'].", ".$mybb->settings['timeformat'], $backup['time']);
| if($backup['time']) { $time = my_date($mybb->settings['dateformat'].", ".$mybb->settings['timeformat'], $backup['time']);
|
Zeile 586 | Zeile 711 |
---|
{ $time = "-"; }
|
{ $time = "-"; }
|
|
|
$table->construct_cell("<a href=\"index.php?module=tools-backupdb&action=dlbackup&file={$backup['file']}\">{$backup['file']}</a>"); $table->construct_cell($time, array("class" => "align_center")); $table->construct_row(); }
|
$table->construct_cell("<a href=\"index.php?module=tools-backupdb&action=dlbackup&file={$backup['file']}\">{$backup['file']}</a>"); $table->construct_cell($time, array("class" => "align_center")); $table->construct_row(); }
|
|
|
if($count == 0) { $table->construct_cell($lang->no_backups, array('colspan' => 2)); $table->construct_row(); }
|
if($count == 0) { $table->construct_cell($lang->no_backups, array('colspan' => 2)); $table->construct_row(); }
|
|
|
$table->output($lang->existing_db_backups);
|
$table->output($lang->existing_db_backups);
|
|
|
if(is_writable(MYBB_ROOT.'inc/settings.php')) { $message_settings = "<span style=\"color: green;\">{$lang->writable}</span>";
| if(is_writable(MYBB_ROOT.'inc/settings.php')) { $message_settings = "<span style=\"color: green;\">{$lang->writable}</span>";
|
Zeile 610 | Zeile 735 |
---|
$message_settings = "<strong><span style=\"color: #C00\">{$lang->not_writable}</span></strong><br />{$lang->please_chmod_777}"; ++$errors; }
|
$message_settings = "<strong><span style=\"color: #C00\">{$lang->not_writable}</span></strong><br />{$lang->please_chmod_777}"; ++$errors; }
|
|
|
if(is_writable(MYBB_ROOT.'inc/config.php')) { $message_config = "<span style=\"color: green;\">{$lang->writable}</span>";
| if(is_writable(MYBB_ROOT.'inc/config.php')) { $message_config = "<span style=\"color: green;\">{$lang->writable}</span>";
|
Zeile 620 | Zeile 745 |
---|
$message_config = "<strong><span style=\"color: #C00\">{$lang->not_writable}</span></strong><br />{$lang->please_chmod_777}"; ++$errors; }
|
$message_config = "<strong><span style=\"color: #C00\">{$lang->not_writable}</span></strong><br />{$lang->please_chmod_777}"; ++$errors; }
|
|
|
if(is_writable('.'.$mybb->settings['uploadspath'])) { $message_upload = "<span style=\"color: green;\">{$lang->writable}</span>";
| if(is_writable('.'.$mybb->settings['uploadspath'])) { $message_upload = "<span style=\"color: green;\">{$lang->writable}</span>";
|
Zeile 630 | Zeile 755 |
---|
$message_upload = "<strong><span style=\"color: #C00\">{$lang->not_writable}</span></strong><br />{$lang->please_chmod_777}"; ++$errors; }
|
$message_upload = "<strong><span style=\"color: #C00\">{$lang->not_writable}</span></strong><br />{$lang->please_chmod_777}"; ++$errors; }
|
|
|
if(is_writable('../'.$mybb->settings['avataruploadpath'])) { $message_avatar = "<span style=\"color: green;\">{$lang->writable}</span>";
| if(is_writable('../'.$mybb->settings['avataruploadpath'])) { $message_avatar = "<span style=\"color: green;\">{$lang->writable}</span>";
|
Zeile 640 | Zeile 765 |
---|
$message_avatar = "<strong><span style=\"color: #C00\">{$lang->not_writable}</span></strong><br />{$lang->please_chmod_777}"; ++$errors; }
|
$message_avatar = "<strong><span style=\"color: #C00\">{$lang->not_writable}</span></strong><br />{$lang->please_chmod_777}"; ++$errors; }
|
|
|
if(is_writable(MYBB_ROOT.'inc/languages/')) { $message_language = "<span style=\"color: green;\">{$lang->writable}</span>";
| if(is_writable(MYBB_ROOT.'inc/languages/')) { $message_language = "<span style=\"color: green;\">{$lang->writable}</span>";
|
Zeile 648 | Zeile 773 |
---|
else { $message_language = "<strong><span style=\"color: #C00\">{$lang->not_writable}</span></strong><br />{$lang->please_chmod_777}";
|
else { $message_language = "<strong><span style=\"color: #C00\">{$lang->not_writable}</span></strong><br />{$lang->please_chmod_777}";
|
++$errors; }
| ++$errors; }
|
if(is_writable(MYBB_ROOT.$config['admin_dir'].'/backups/'))
|
if(is_writable(MYBB_ROOT.$config['admin_dir'].'/backups/'))
|
{
| {
|
$message_backup = "<span style=\"color: green;\">{$lang->writable}</span>"; } else { $message_backup = "<strong><span style=\"color: #C00\">{$lang->not_writable}</span></strong><br />{$lang->please_chmod_777}";
|
$message_backup = "<span style=\"color: green;\">{$lang->writable}</span>"; } else { $message_backup = "<strong><span style=\"color: #C00\">{$lang->not_writable}</span></strong><br />{$lang->please_chmod_777}";
|
++$errors; }
| ++$errors; }
|
if(is_writable(MYBB_ROOT.'/cache/'))
|
if(is_writable(MYBB_ROOT.'/cache/'))
|
{
| {
|
$message_cache = "<span style=\"color: green;\">{$lang->writable}</span>"; } else { $message_cache = "<strong><span style=\"color: #C00\">{$lang->not_writable}</span></strong><br />{$lang->please_chmod_777}";
|
$message_cache = "<span style=\"color: green;\">{$lang->writable}</span>"; } else { $message_cache = "<strong><span style=\"color: #C00\">{$lang->not_writable}</span></strong><br />{$lang->please_chmod_777}";
|
++$errors; }
| ++$errors; }
|
if(is_writable(MYBB_ROOT.'/cache/themes/'))
|
if(is_writable(MYBB_ROOT.'/cache/themes/'))
|
{
| {
|
$message_themes = "<span style=\"color: green;\">{$lang->writable}</span>"; } else { $message_themes = "<strong><span style=\"color: #C00\">{$lang->not_writable}</span></strong><br />{$lang->please_chmod_777}"; ++$errors;
|
$message_themes = "<span style=\"color: green;\">{$lang->writable}</span>"; } else { $message_themes = "<strong><span style=\"color: #C00\">{$lang->not_writable}</span></strong><br />{$lang->please_chmod_777}"; ++$errors;
|
}
| }
|
if($errors)
|
if($errors)
|
{ $page->output_error("<p><em>{$errors} {$lang->error_chmod}</span></strong> {$lang->chmod_info} <a href=\"http://wiki.mybboard.net/index.php/HowTo_Chmod\" target=\"_blank\">MyBB Wiki</a>.</em></p>"); }
| { $page->output_error("<p><em>{$errors} {$lang->error_chmod}</span></strong> {$lang->chmod_info} <a href=\"http://docs.mybb.com/HowTo_Chmod.html\" target=\"_blank\">MyBB Docs</a>.</em></p>"); }
|
else { $page->output_success("<p><em>{$lang->success_chmod}</em></p>"); }
|
else { $page->output_success("<p><em>{$lang->success_chmod}</em></p>"); }
|
|
|
$table = new Table; $table->construct_header($lang->file); $table->construct_header($lang->location, array("colspan" => 2, 'width' => 250));
|
$table = new Table; $table->construct_header($lang->file); $table->construct_header($lang->location, array("colspan" => 2, 'width' => 250));
|
|
|
$table->construct_cell("<strong>{$lang->config_file}</strong>"); $table->construct_cell("./inc/config.php"); $table->construct_cell($message_config); $table->construct_row();
|
$table->construct_cell("<strong>{$lang->config_file}</strong>"); $table->construct_cell("./inc/config.php"); $table->construct_cell($message_config); $table->construct_row();
|
|
|
$table->construct_cell("<strong>{$lang->settings_file}</strong>"); $table->construct_cell("./inc/settings.php"); $table->construct_cell($message_settings); $table->construct_row();
|
$table->construct_cell("<strong>{$lang->settings_file}</strong>"); $table->construct_cell("./inc/settings.php"); $table->construct_cell($message_settings); $table->construct_row();
|
|
|
$table->construct_cell("<strong>{$lang->file_upload_dir}</strong>"); $table->construct_cell($mybb->settings['uploadspath']); $table->construct_cell($message_upload); $table->construct_row();
|
$table->construct_cell("<strong>{$lang->file_upload_dir}</strong>"); $table->construct_cell($mybb->settings['uploadspath']); $table->construct_cell($message_upload); $table->construct_row();
|
|
|
$table->construct_cell("<strong>{$lang->avatar_upload_dir}</strong>"); $table->construct_cell($mybb->settings['avataruploadpath']); $table->construct_cell($message_avatar);
|
$table->construct_cell("<strong>{$lang->avatar_upload_dir}</strong>"); $table->construct_cell($mybb->settings['avataruploadpath']); $table->construct_cell($message_avatar);
|
$table->construct_row();
| $table->construct_row();
|
$table->construct_cell("<strong>{$lang->language_files}</strong>"); $table->construct_cell("./inc/languages"); $table->construct_cell($message_language);
|
$table->construct_cell("<strong>{$lang->language_files}</strong>"); $table->construct_cell("./inc/languages"); $table->construct_cell($message_language);
|
$table->construct_row();
| $table->construct_row();
|
$table->construct_cell("<strong>{$lang->backup_dir}</strong>"); $table->construct_cell('./'.$config['admin_dir'].'/backups'); $table->construct_cell($message_backup); $table->construct_row();
|
$table->construct_cell("<strong>{$lang->backup_dir}</strong>"); $table->construct_cell('./'.$config['admin_dir'].'/backups'); $table->construct_cell($message_backup); $table->construct_row();
|
|
|
$table->construct_cell("<strong>{$lang->cache_dir}</strong>"); $table->construct_cell('./cache'); $table->construct_cell($message_cache); $table->construct_row();
|
$table->construct_cell("<strong>{$lang->cache_dir}</strong>"); $table->construct_cell('./cache'); $table->construct_cell($message_cache); $table->construct_row();
|
|
|
$table->construct_cell("<strong>{$lang->themes_dir}</strong>"); $table->construct_cell('./cache/themes'); $table->construct_cell($message_themes); $table->construct_row();
|
$table->construct_cell("<strong>{$lang->themes_dir}</strong>"); $table->construct_cell('./cache/themes'); $table->construct_cell($message_themes); $table->construct_row();
|
|
|
$table->output($lang->chmod_files_and_dirs);
|
$table->output($lang->chmod_files_and_dirs);
|
|
|
$page->output_footer(); } ?>
| $page->output_footer(); } ?>
|