"; $res=@mysql_query("FLUSH PRIVILEGES",$config['dbconnection']); $meldung=mysql_error($config['dbconnection']); if ($meldung!="") { $msg.='> MySQL-Error: '.$meldung; } else { $msg.="> Privileges were reloaded."; } break; case 2: //FLUSH STATUS $msg="> operating FLUSH STATUS
"; $res=@mysql_query("FLUSH STATUS",$config['dbconnection']); $meldung=mysql_error($config['dbconnection']); if ($meldung!="") { $msg.='> MySQL-Error: '.$meldung; } else { $msg.="> Status was reset."; } break; case 3: //FLUSH HOSTS $msg="> operating FLUSH HOSTS
"; $res=@mysql_query("FLUSH HOSTS",$config['dbconnection']); $meldung=mysql_error($config['dbconnection']); if ($meldung!="") { $msg.='> MySQL-Error: '.$meldung; } else { $msg.="> Hosts were reloaded."; ; } break; case 4: //SHOW MASTER LOGS $msg="> operating SHOW MASTER LOGS
"; $res=@mysql_query("SHOW MASTER LOGS",$config['dbconnection']); $meldung=mysql_error($config['dbconnection']); if ($meldung!="") { $msg.='> MySQL-Error: '.$meldung; } else { $numrows=mysql_num_rows($res); if ($numrows==0||$numrows===false) { $msg.='> there are no master log-files'; } else { $msg.='> there are '.$numrows.' logfiles
'; for ($i=0; $i<$numrows; $i++) { $row=mysql_fetch_row($res); $msg.='> '.$row[0].'   '.(($data_dir) ? byte_output(@filesize($data_dir.$row[0])) : '').'
'; } } } break; case 5: //RESET MASTER $msg="> operating RESET MASTER
"; $res=@mysql_query("RESET MASTER",$config['dbconnection']); $meldung=mysql_error($config['dbconnection']); if ($meldung!="") { $msg.='> MySQL-Error: '.$meldung; } else { $msg.="> All Masterlogs were deleted."; } break; } echo '
'.$lang['L_MYSQLSYS'].'
'; echo '
'; echo '
'; echo '> MySQL Dumper v'.MSD_VERSION.' - Output Console

'; echo ($msg!="") ? $msg : '> waiting for operation ...
'; echo '
';